add ca-certificate to docker container (#212)

This commit is contained in:
饺子w 2019-08-22 08:10:46 +08:00 committed by GitHub
parent 2b85b0bb82
commit e60ee06a7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
FROM frolvlad/alpine-glibc:glibc-2.28 FROM frolvlad/alpine-glibc:glibc-2.28
WORKDIR /app WORKDIR /app
RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/*
ADD gotify-app /app/ ADD gotify-app /app/
ENTRYPOINT ["./gotify-app"] ENTRYPOINT ["./gotify-app"]