We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc8fc8d commit 0611d49Copy full SHA for 0611d49
Dockerfile.web
@@ -3,7 +3,7 @@
3
# full semver just for python base image
4
ARG PYTHON_VERSION=3.11.11
5
6
-FROM python:${PYTHON_VERSION}-slim-bullseye AS builder
+FROM python:${PYTHON_VERSION}-slim AS builder
7
8
# avoid stuck build due to user prompt
9
ARG DEBIAN_FRONTEND=noninteractive
@@ -38,7 +38,7 @@ RUN python -m venv $VENV \
38
# --mount=type=bind,source=./requirements.txt,target=/app/requirements.txt \
39
# python -m pip install -r requirements.txt
40
41
-FROM python:${PYTHON_VERSION}-slim-bullseye AS runner
+FROM python:${PYTHON_VERSION}-slim AS runner
42
43
# set timezone
44
ENV TZ=${TZ:-"America/Chicago"}
0 commit comments