Skip to content

Commit 0611d49

Browse files
build (Dockerfile.web): change image
Use one with alleged better support for qemu
1 parent dc8fc8d commit 0611d49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile.web

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# full semver just for python base image
44
ARG PYTHON_VERSION=3.11.11
55

6-
FROM python:${PYTHON_VERSION}-slim-bullseye AS builder
6+
FROM python:${PYTHON_VERSION}-slim AS builder
77

88
# avoid stuck build due to user prompt
99
ARG DEBIAN_FRONTEND=noninteractive
@@ -38,7 +38,7 @@ RUN python -m venv $VENV \
3838
# --mount=type=bind,source=./requirements.txt,target=/app/requirements.txt \
3939
# python -m pip install -r requirements.txt
4040

41-
FROM python:${PYTHON_VERSION}-slim-bullseye AS runner
41+
FROM python:${PYTHON_VERSION}-slim AS runner
4242

4343
# set timezone
4444
ENV TZ=${TZ:-"America/Chicago"}

0 commit comments

Comments
 (0)