We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21c2878 commit e1fb808Copy full SHA for e1fb808
Dockerfile
@@ -1,5 +1,5 @@
1
# Use a specific version of the Python image
2
-FROM python:3.11.4-slim-bookworm
+FROM python:3.13.2-slim-bookworm
3
4
# Set the working directory to /app
5
WORKDIR /app
@@ -11,11 +11,11 @@ RUN useradd -m appuser
11
ARG PUID=1000
12
ARG PGID=1000
13
14
-# Set the PYTHONUNBUFFERED environment variable to avoid partial output in logs
+# To avoid partial output in logs
15
ENV PYTHONUNBUFFERED=1
16
17
# Add non-free to sources.list
18
-RUN echo "deb http://deb.debian.org/debian bullseye non-free" >> /etc/apt/sources.list
+RUN echo "deb http://deb.debian.org/debian bookworm non-free" >> /etc/apt/sources.list
19
20
# Set ownership to appuser and switch to "appuser"
21
RUN groupmod -o -g "$PGID" appuser && usermod -o -u "$PUID" appuser
0 commit comments