From 760e5a822e5379b1eb0fb4ed47b75e49067923f7 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Sat, 18 Nov 2017 14:02:14 +0100 Subject: [PATCH] added missing ca-certificates to the Dockerfiles --- Dockerfile.amd64 | 1 + Dockerfile.arm | 1 + 2 files changed, 2 insertions(+) diff --git a/Dockerfile.amd64 b/Dockerfile.amd64 index e9c48d0..44101b5 100644 --- a/Dockerfile.amd64 +++ b/Dockerfile.amd64 @@ -6,6 +6,7 @@ LABEL description="This Dockerfile will install the Golang URL Shortener." EXPOSE 8080 +COPY ca-certificates.crt /etc/ssl/certs/ COPY docker_releases/golang-url-shortener_linux_amd64/golang-url-shortener / VOLUME ["/data"] diff --git a/Dockerfile.arm b/Dockerfile.arm index 3891310..cedc3be 100644 --- a/Dockerfile.arm +++ b/Dockerfile.arm @@ -6,6 +6,7 @@ LABEL description="This Dockerfile will install the Golang URL Shortener." EXPOSE 8080 +COPY ca-certificates.crt /etc/ssl/certs/ COPY docker_releases/golang-url-shortener_linux_arm/golang-url-shortener / VOLUME ["/data"]