Skip to content

Commit e1fb808

Browse files
authored
v2.5.30
1 parent 21c2878 commit e1fb808

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use a specific version of the Python image
2-
FROM python:3.11.4-slim-bookworm
2+
FROM python:3.13.2-slim-bookworm
33

44
# Set the working directory to /app
55
WORKDIR /app
@@ -11,11 +11,11 @@ RUN useradd -m appuser
1111
ARG PUID=1000
1212
ARG PGID=1000
1313

14-
# Set the PYTHONUNBUFFERED environment variable to avoid partial output in logs
14+
# To avoid partial output in logs
1515
ENV PYTHONUNBUFFERED=1
1616

1717
# Add non-free to sources.list
18-
RUN echo "deb http://deb.debian.org/debian bullseye non-free" >> /etc/apt/sources.list
18+
RUN echo "deb http://deb.debian.org/debian bookworm non-free" >> /etc/apt/sources.list
1919

2020
# Set ownership to appuser and switch to "appuser"
2121
RUN groupmod -o -g "$PGID" appuser && usermod -o -u "$PUID" appuser

0 commit comments

Comments
 (0)