Skip to content

Commit 9737a8b

Browse files
deps: upgrade postgres from 17.10 to 17.11.
1 parent d4bd22a commit 9737a8b

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.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.10-20260525
28+
TAG_NAME=python3.11-pg17.11-20260818
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}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
inputs:
88
dockerImageTag:
99
description: 'Image Tag'
10-
default: 'v2.10.0-dev'
10+
default: 'v2.10.6-dev'
1111
required: true
1212
dockerImageTagWithLatest:
1313
description: '是否发布latest tag(正式发版时选择,测试版本切勿选择)'

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.10-20260525 AS stage-build
9+
FROM ghcr.io/1panel-dev/maxkb-base:python3.11-pg17.11-20260818 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.10-20260525
27+
FROM ghcr.io/1panel-dev/maxkb-base:python3.11-pg17.11-20260818
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.10-trixie
6+
FROM postgres:17.11-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)