diff --git a/.github/workflows/on-prerelease.yml b/.github/workflows/on-prerelease.yml index b2f6833c4..7c7e4ebbf 100644 --- a/.github/workflows/on-prerelease.yml +++ b/.github/workflows/on-prerelease.yml @@ -392,6 +392,7 @@ jobs: context: "{{defaultContext}}:Docker/Settings/V2/DB-Admin/pgsql" cache-from: type=registry,ref=${{ env.DATABASE_IMAGE_NAME }}:pre cache-to: type=inline + platforms: linux/amd64,linux/arm64 build-args: ADMIN_API_VERSION=${{ steps.prepare-tags.outputs.VERSION }} file: Dockerfile tags: ${{ steps.prepare-tags.outputs.DBTAGS }} diff --git a/Docker/Settings/V2/DB-Admin/pgsql/Dockerfile b/Docker/Settings/V2/DB-Admin/pgsql/Dockerfile index a4d4ec193..bfcf97447 100644 --- a/Docker/Settings/V2/DB-Admin/pgsql/Dockerfile +++ b/Docker/Settings/V2/DB-Admin/pgsql/Dockerfile @@ -3,8 +3,8 @@ # The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0. # See the LICENSE and NOTICES files in the project root for more information. -#edfialliance/ods-api-db-admin:7.3 -FROM edfialliance/ods-api-db-admin:7.3@sha256:0a25a039e575464de1fdf09b2db270f00910f937cb782dfa809ac3c192509233 AS base +#edfialliance/ods-api-db-admin:7.3.1 +FROM edfialliance/ods-api-db-admin:7.3.1@sha256:9d6c6ad298f5eb2ea58d7b2c1c7ea5f6bdfcd12d90028b98fbfea4237a5610f2 AS base LABEL maintainer="Ed-Fi Alliance, LLC and Contributors " ARG POSTGRES_USER=postgres @@ -17,7 +17,7 @@ ENV VERSION="${ADMIN_API_VERSION:-2.2.0}" USER root COPY run-adminapi-migrations.sh /docker-entrypoint-initdb.d/3-run-adminapi-migrations.sh -RUN apk add --no-cache dos2unix=7.5.2-r0 unzip=6.0-r14 && rm -rf /var/cache/apk/* +RUN apk add --no-cache dos2unix=7.5.2-r0 unzip=6.0-r15 && rm -rf /var/cache/apk/* USER ${POSTGRES_USER} FROM base AS setup diff --git a/Docker/V2/db.pgsql.admin.Dockerfile b/Docker/V2/db.pgsql.admin.Dockerfile index 5e845dff1..a4334e31f 100644 --- a/Docker/V2/db.pgsql.admin.Dockerfile +++ b/Docker/V2/db.pgsql.admin.Dockerfile @@ -5,9 +5,9 @@ FROM alpine:3.20@sha256:187cce89a2fdd4eaf457a0af45f5ce27672f35ce0f6df49b5b0ee835afe0561b AS assets -FROM edfialliance/ods-api-db-admin:7.3@sha256:0a25a039e575464de1fdf09b2db270f00910f937cb782dfa809ac3c192509233 AS base +FROM edfialliance/ods-api-db-admin:7.3.1@sha256:9d6c6ad298f5eb2ea58d7b2c1c7ea5f6bdfcd12d90028b98fbfea4237a5610f2 AS base USER root -RUN apk add --no-cache dos2unix=7.5.2-r0 unzip=6.0-r14 && rm -rf /var/cache/apk/* +RUN apk add --no-cache dos2unix=7.5.2-r0 unzip=6.0-r15 && rm -rf /var/cache/apk/* FROM base AS setup LABEL maintainer="Ed-Fi Alliance, LLC and Contributors "