Skip to content

[ODS-6563] Pre-release tasks for ODS/API 7.3 #1188

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Docker/ods-api-bulk-load-console/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN dotnet tool install -g \

# Smaller image
FROM mcr.microsoft.com/dotnet/runtime:8.0.10-alpine3.20@sha256:3230a42af24d0a73b77219bb4bc742aa2fd851b38db62d1decd61fb88a72de07
RUN apk --upgrade --no-cache add gettext=~0 bash=~5 busybox=~1.36 openssl=~3 && \
RUN apk --upgrade --no-cache add gettext=~0 bash=~5 busybox=~1.36 openssl~=3.3.2-r1 && \
addgroup -S edfi && adduser -S edfi -G edfi

LABEL maintainer="Ed-Fi Alliance, LLC and Contributors <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion Docker/ods-api-db-admin/alpine/pgsql/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# Base image with additional packages
FROM postgres:16.4-alpine3.20@sha256:ad47523c5154f587f0be492539c76c6c3394e8a7b02f2d86f7b8b32297a862a6 AS base
RUN apk --upgrade --no-cache add unzip=~6 dos2unix=~7 busybox=~1.36 openssl=~3 libxml2=~2
RUN apk --upgrade --no-cache add unzip=~6 dos2unix=~7 busybox=~1.36 openssl~=3.3.2-r1 libxml2=~2

# Start a new layer so that the above layer can be cached
FROM base AS build
Expand Down
2 changes: 1 addition & 1 deletion Docker/ods-api-db-ods-minimal/alpine/pgsql/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# Base image with additional packages
FROM postgres:16.4-alpine3.20@sha256:ad47523c5154f587f0be492539c76c6c3394e8a7b02f2d86f7b8b32297a862a6 AS base
RUN apk --upgrade --no-cache add unzip=~6 dos2unix=~7 busybox=~1.36 openssl=~3 libxml2=~2
RUN apk --upgrade --no-cache add unzip=~6 dos2unix=~7 busybox=~1.36 openssl~=3.3.2-r1 libxml2=~2

# Start a new layer so that the above layer can be cached
FROM base AS build
Expand Down
2 changes: 1 addition & 1 deletion Docker/ods-api-db-ods-sandbox/alpine/pgsql/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# Base image with additional packages
FROM postgres:16.4-alpine3.20@sha256:ad47523c5154f587f0be492539c76c6c3394e8a7b02f2d86f7b8b32297a862a6 AS base
RUN apk --upgrade --no-cache add unzip=~6 dos2unix=~7 busybox=~1.36 openssl=~3 libxml2=~2
RUN apk --upgrade --no-cache add unzip=~6 dos2unix=~7 busybox=~1.36 openssl~=3.3.2-r1 libxml2=~2

# Start a new layer so that the above layer can be cached
FROM base AS build
Expand Down
2 changes: 1 addition & 1 deletion Docker/ods-api-web-api/alpine/pgsql/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apk --upgrade --no-cache add unzip=~6 dos2unix=~7 bash=~5 gettext=~0 icu=~74

# Start a new layer so that the above layer can be cached
FROM base AS build
RUN apk --upgrade --no-cache add postgresql16-client=~16
RUN apk --upgrade --no-cache add postgresql16-client=~16.6
ARG API_VERSION
ARG STANDARD_VERSION
ARG API_URL=https://pkgs.dev.azure.com/ed-fi-alliance/Ed-Fi-Alliance-OSS/_apis/packaging/feeds/EdFi/nuget/packages/EdFi.Suite3.Ods.WebApi.Standard.${STANDARD_VERSION}/versions/${API_VERSION}/content
Expand Down
2 changes: 1 addition & 1 deletion Docker/ods-api-web-sandbox-admin/alpine/pgsql/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apk --upgrade --no-cache add unzip=~6 dos2unix=~7 bash=~5 gettext=~0 icu=~74

# Start a new layer so that the above layer can be cached
FROM base AS build
RUN apk --upgrade --no-cache add postgresql16-client=~16
RUN apk --upgrade --no-cache add postgresql16-client=~16.6
ARG SANDBOX_VERSION
ARG SANDBOX_URL=https://pkgs.dev.azure.com/ed-fi-alliance/Ed-Fi-Alliance-OSS/_apis/packaging/feeds/EdFi/nuget/packages/EdFi.Suite3.Ods.SandboxAdmin/versions/${SANDBOX_VERSION}/content

Expand Down
Loading