Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM python:3.10 as build-python
FROM --platform=$BUILDPLATFORM python:3.10.18 as build-python

ENV VIRTUAL_ENV=/opt/venv \
TMP_DIR=/srv/tmp
Expand All @@ -10,7 +10,7 @@ COPY ./dependencies/pip/requirements.txt "${TMP_DIR}/pip_dependencies.txt"
RUN pip-sync "${TMP_DIR}/pip_dependencies.txt" 1>/dev/null


from --platform=$TARGETPLATFORM python:3.10-slim
from --platform=$TARGETPLATFORM python:3.10.18-slim

ENV DEBIAN_FRONTEND=noninteractive
ENV LANG=en_US.UTF-8
Expand Down
Loading