Add ca-certs to multi-arch gateways

Adds package to armhf / arm64 for use with plugins.

Signed-off-by: Alex Ellis <alexellis2@gmail.com>
This commit is contained in:
Alex Ellis
2019-06-14 19:19:15 +01:00
parent e3c976a428
commit 6481b683f2
2 changed files with 5 additions and 3 deletions

View File

@ -26,7 +26,8 @@ RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o gateway .
FROM alpine:3.9
RUN addgroup -S app \
&& adduser -S -g app app
&& adduser -S -g app app \
&& apk add --no-cache ca-certificates
WORKDIR /home/app