Skip to content
Snippets Groups Projects
Commit 6481b683 authored by Alex Ellis's avatar Alex Ellis
Browse files

Add ca-certs to multi-arch gateways


Adds package to armhf / arm64 for use with plugins.

Signed-off-by: default avatarAlex Ellis <alexellis2@gmail.com>
parent e3c976a4
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -33,7 +33,7 @@ RUN license-check -path ./ --verbose=false "Alex Ellis" "OpenFaaS Project" "Open
-X github.com/openfaas/faas/gateway/version.Version=${VERSION}" \
-a -installsuffix cgo -o gateway .
FROM alpine:3.8
FROM alpine:3.9
LABEL org.label-schema.license="MIT" \
org.label-schema.vcs-url="https://github.com/openfaas/faas" \
......@@ -43,7 +43,8 @@ LABEL org.label-schema.license="MIT" \
org.label-schema.docker.schema-version="1.0"
RUN addgroup -S app \
&& adduser -S -g app app
&& adduser -S -g app app \
&& apk add --no-cache ca-certificates
WORKDIR /home/app
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment