File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 1212 - " postgres/**"
1313 - " .github/workflows/**"
1414 schedule :
15- - cron : " 05 09 * * 1"
15+ - cron : " 06 09 * * 1"
1616
1717concurrency :
1818 group : ${{ github.head_ref || github.sha }}
Original file line number Diff line number Diff line change 1- ARG POSTGRES_VERSION
1+ ARG POSTGRES_VERSION=latest
22FROM postgres:${POSTGRES_VERSION}-alpine
33COPY non-durable-settings.sh /docker-entrypoint-initdb.d/01-non-durable-settings.sh
Original file line number Diff line number Diff line change 1- ARG POSTGRES_VERSION
1+ ARG POSTGRES_VERSION=latest
22###
3- FROM postgres:${POSTGRES_VERSION}-alpine as builder
3+ FROM postgres:${POSTGRES_VERSION}-alpine AS builder
4+
5+ ARG POSTGRES_VERSION
46
5- RUN apk add make curl gcc libc-dev clang15 llvm15
7+ RUN apk add make curl clang19 llvm19
68RUN curl https://gitlab.com/dalibo/postgresql_anonymizer/-/archive/1.3.2/postgresql_anonymizer-1.3.2.tar.gz -o anon.tar.gz && \
79 mkdir anon && \
810 tar zxvf anon.tar.gz -C anon --strip-components 1
911RUN cd anon && make && make install
1012
1113###
12- FROM postgres:${POSTGRES_VERSION}-alpine
14+ FROM postgres:${POSTGRES_VERSION}-alpine AS final
1315
1416COPY --from=builder /usr/local/share/postgresql /usr/local/share/postgresql
1517COPY --from=builder /usr/local/lib/postgresql /usr/local/lib/postgresql
You can’t perform that action at this time.
0 commit comments