We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd3b2b8 commit 931c9caCopy full SHA for 931c9ca
2 files changed
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3-slim AS base
+FROM python:3.12-slim AS base
2
3
# This will be set by the GitHub action to the folder containing this component.
4
ARG FOLDER=/app
@@ -9,9 +9,6 @@ FROM base AS deps
9
COPY . /app
10
WORKDIR ${FOLDER}
11
12
-# Update pip
13
-RUN pip install --upgrade pip
14
-
15
USER 1000:1000
16
17
# Install dependencies
Dockerfile.dev
@@ -1,14 +1,11 @@
-FROM python:3-slim
+FROM python:3.12-slim
5
6
COPY --chown=1000:1000 . /app
7
8
# Setup venv
0 commit comments