Add ca-certificates

This commit is contained in:
Darren Shepherd 2019-08-04 21:26:11 -07:00
parent 86dd7a455e
commit 085cc3eeda

View File

@ -6,5 +6,6 @@ RUN cd /src && \
CGO_ENABLED=0 go build -ldflags "-extldflags -static -s" -o /naok -mod=vendor
FROM alpine
RUN apk -U --no-cache add ca-certificates
COPY --from=build /naok /usr/bin/naok
ENTRYPOINT ["/usr/bin/naok"]