Skip to content

Commit a08d829

Browse files
dep: upgrade PostgreSQL from 17.6 to 17.7.
1 parent 238f679 commit a08d829

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build-and-push-python-pg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
DOCKER_IMAGE=ghcr.io/1panel-dev/maxkb-base
2727
DOCKER_PLATFORMS=${{ github.event.inputs.architecture }}
28-
TAG_NAME=python3.11-pg17.6
28+
TAG_NAME=python3.11-pg17.7-20260212
2929
DOCKER_IMAGE_TAGS="--tag ${DOCKER_IMAGE}:${TAG_NAME}"
3030
echo ::set-output name=docker_image::${DOCKER_IMAGE}
3131
echo ::set-output name=version::${TAG_NAME}

installer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN cd ui && ls -la && if [ -d "dist" ]; then exit 0; fi && \
66
NODE_OPTIONS="--max-old-space-size=4096" npx concurrently "npm run build" "npm run build-chat" && \
77
find . -maxdepth 1 ! -name '.' ! -name 'dist' ! -name 'public' -exec rm -rf {} +
88

9-
FROM ghcr.io/1panel-dev/maxkb-base:python3.11-pg17.6 AS stage-build
9+
FROM ghcr.io/1panel-dev/maxkb-base:python3.11-pg17.7-20260212 AS stage-build
1010
COPY --chmod=700 . /opt/maxkb-app
1111
RUN apt-get update && \
1212
apt-get install -y --no-install-recommends gcc g++ gettext libexpat1-dev libffi-dev && \
@@ -24,7 +24,7 @@ RUN gcc -shared -fPIC -o ${MAXKB_SANDBOX_HOME}/lib/sandbox.so /opt/maxkb-app/ins
2424
rm -rf /opt/maxkb-app/installer
2525
COPY --from=web-build --chmod=700 ui /opt/maxkb-app/ui
2626

27-
FROM ghcr.io/1panel-dev/maxkb-base:python3.11-pg17.6
27+
FROM ghcr.io/1panel-dev/maxkb-base:python3.11-pg17.7-20260212
2828
ARG DOCKER_IMAGE_TAG=dev \
2929
BUILD_AT \
3030
GITHUB_COMMIT

installer/Dockerfile-base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ RUN python3 -m venv /opt/py3
33

44
FROM ghcr.io/1panel-dev/maxkb-vector-model:v2.0.3 AS vector-model
55

6-
FROM postgres:17.6-trixie
6+
FROM postgres:17.7-trixie
77
COPY --from=python-stage /usr/local /usr/local
88
COPY --from=python-stage /opt/py3 /opt/py3
99
COPY --chmod=500 installer/*.sh /usr/bin/

0 commit comments

Comments
 (0)