We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8de255 commit c844db6Copy full SHA for c844db6
docker/app/Dockerfile
@@ -1,4 +1,4 @@
1
-ARG PYTHON_VERSION=3.9
+ARG PYTHON_VERSION=3.12
2
FROM python:${PYTHON_VERSION} AS builder
3
4
# hadolint ignore=DL3008
@@ -8,6 +8,8 @@ RUN apt-get update \
8
9
WORKDIR /app
10
11
+RUN pip install --upgrade pip
12
+
13
COPY requirements-dev.txt ./
14
RUN pip install --no-cache-dir -r requirements-dev.txt \
15
&& rm -rf /tmp/pip-ephem-wheel-cache*
docker/client/Dockerfile
@@ -16,6 +16,8 @@ FROM python:${PYTHON_VERSION} AS builder
16
17
18
19
20
21
22
RUN pip install --no-cache-dir -r requirements-dev.txt
23
0 commit comments