fix: include ca-certs to avoid x509 error [ci skip]

This commit is contained in:
decentral1se 2023-10-10 00:50:43 +02:00
parent 69ce07f81f
commit d90c9b88f1
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 8 additions and 1 deletions

View File

@ -2,7 +2,14 @@ FROM golang:1.21-alpine AS build
ENV GOPRIVATE coopcloud.tech
RUN apk add --no-cache make git gcc musl-dev
RUN apk add --no-cache \
ca-certificates \
gcc \
git \
make \
musl-dev
RUN update-ca-certificates
COPY . /app