It would be a benefit if services inside the container could trust/verify Yukon Government-signed certificates.
Could it be as simple as this?
# Install ca-certificates bundle inside the docker image and remove the temp folder
RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/*
# Copy certificate from your local machine to desired folder inside the image to be built.
COPY ./yukon-government.crt /usr/local/share/ca-certificates/yukon-government.crt
# Run the command update-ca-certificates to update new cert into corresponding folder
RUN update-ca-certificates
(from https://hackernoon.com/alpine-docker-image-with-secured-communication-ssl-tls-go-restful-api-128eb6b54f1f)
It would be a benefit if services inside the container could trust/verify Yukon Government-signed certificates.
Could it be as simple as this?
(from https://hackernoon.com/alpine-docker-image-with-secured-communication-ssl-tls-go-restful-api-128eb6b54f1f)