Skip to content
Open
Show file tree
Hide file tree
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 app/Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# ---------- ---------- ---------- ---------- ---------- ---------- ----------
# Install packages, Configure & Clean up
# build from default to include MySQL drivers
FROM python:3.13.2-bookworm AS python-build
FROM python:3.14.2-bookworm AS python-build
RUN apt-get update && \
apt-get -y upgrade 2>&1 && \
apt-get autoremove -y && \
Expand All @@ -12,7 +12,7 @@ RUN apt-get update && \
RUN pip install --upgrade pip setuptools && \
pip install mysqlclient
# use slim to reduce size and unused stuff
FROM python:3.13.2-slim-bookworm
FROM python:3.14.2-slim-bookworm
COPY --from=python-build /usr/local/lib/python3.13/site-packages /usr/local/lib/python3.13/site-packages
RUN apt-get update && \
apt-get install -y libmariadb3 && \
Expand Down
4 changes: 2 additions & 2 deletions app/Dockerfile-prod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# ---------- ---------- ---------- ---------- ---------- ---------- ----------
# Install packages, Configure & Clean up
# build from default to include MySQL drivers
FROM python:3.13.2-bookworm AS python-build
FROM python:3.14.2-bookworm AS python-build
RUN apt-get update && \
apt-get -y upgrade 2>&1 && \
apt-get autoremove -y && \
Expand All @@ -12,7 +12,7 @@ RUN apt-get update && \
RUN pip install --upgrade pip setuptools && \
pip install mysqlclient
# use slim to reduce size and unused stuff
FROM python:3.13.2-slim-bookworm
FROM python:3.14.2-slim-bookworm
COPY --from=python-build /usr/local/lib/python3.12/site-packages /usr/local/lib/python3.12/site-packages
RUN apt-get update && \
apt-get install -y libmariadb3 gcc libpcre3 libpcre3-dev && \
Expand Down