chore: update pro image (#5513)

* chore: update pg client to 17 in pro docker image

* chore: update ci to use pro image
This commit is contained in:
gchust 2024-10-25 14:17:01 +08:00 committed by GitHub
parent 0cf871c083
commit 2e7a21d1d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile
file: Dockerfile.pro
build-args: |
VERDACCIO_URL=http://localhost:4873/
COMMIT_HASH=${GITHUB_SHA}

View File

@ -122,7 +122,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile
file: Dockerfile.pro
build-args: |
VERDACCIO_URL=http://localhost:4873/
COMMIT_HASH=${GITHUB_SHA}

View File

@ -107,7 +107,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile
file: Dockerfile.pro
build-args: |
VERDACCIO_URL=http://localhost:4873/
COMMIT_HASH=${GITHUB_SHA}

View File

@ -54,7 +54,7 @@ RUN mkdir -p /app/nocobase/storage/uploads/ && echo "$COMMIT_HASH" >> /app/nocob
# install postgresql-client and mysql-client
RUN apt update && apt install -y wget postgresql-common gnupg \
&& /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y \
&& apt install -y postgresql-client-16 \
&& apt install -y postgresql-client-17 \
&& wget https://downloads.mysql.com/archives/get/p/23/file/mysql-community-client-core_8.1.0-1debian11_amd64.deb \
&& dpkg -x mysql-community-client-core_8.1.0-1debian11_amd64.deb /tmp/mysql-client \
&& cp /tmp/mysql-client/usr/bin/mysqldump /usr/bin/ \