fix: update Dockerfile to use Python 3.11 and PostgreSQL 15.14 images

This commit is contained in:
CaptainB 2025-08-19 14:06:48 +08:00
parent 87eb5c3789
commit 886c45fb1d

View File

@ -5,7 +5,7 @@ RUN cd ui && \
npm install && \
npm run build && \
rm -rf ./node_modules
FROM ghcr.io/1panel-dev/maxkb-python-pg:python3.11-pg15.8 AS stage-build
FROM ghcr.io/1panel-dev/maxkb-python-pg:python3.11-pg15.14 AS stage-build
ARG DEPENDENCIES=" \
python3-pip"
@ -29,7 +29,7 @@ RUN python3 -m venv /opt/py3 && \
poetry install && \
export MAXKB_CONFIG_TYPE=ENV && python3 /opt/maxkb/app/apps/manage.py compilemessages
FROM ghcr.io/1panel-dev/maxkb-python-pg:python3.11-pg15.8
FROM ghcr.io/1panel-dev/maxkb-python-pg:python3.11-pg15.14
ARG DOCKER_IMAGE_TAG=dev \
BUILD_AT \
GITHUB_COMMIT