Update CA-Certificates at the beginning
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
Lennard Brinkhaus 2022-01-02 03:09:24 +01:00
parent d321134459
commit 1640941c21
Signed by: lennard.brinkhaus
GPG Key ID: D4C9B6A87F97B070
2 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,9 @@ FROM harbor.dragse.it/base/alpine:3.15
RUN echo $'https://nexus.dragse.it/repository/apk-main/\nhttps://nexus.dragse.it/repository/apk-community/' > /etc/apk/repositories
RUN apk --no-cache update \
&& apk --no-cache add ca-certificates wget \
&& update-ca-certificates
# 70 is the standard uid/gid for "postgres" in Alpine
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.12-stable

View File

@ -2,6 +2,10 @@ FROM harbor.dragse.it/base/alpine:3.15
RUN echo $'https://nexus.dragse.it/repository/apk-main/\nhttps://nexus.dragse.it/repository/apk-community/' > /etc/apk/repositories
RUN apk --no-cache update \
&& apk --no-cache add ca-certificates wget \
&& update-ca-certificates
# 70 is the standard uid/gid for "postgres" in Alpine
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.12-stable
RUN set -eux; \