From 2489e91c50ccba5c985a8d2273144f76f693c37f Mon Sep 17 00:00:00 2001 From: J0WI Date: Thu, 25 Jan 2018 23:45:20 +0100 Subject: [PATCH] Use official golang as base container --- Dockerfile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6f5cf01..8bd1a15 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,15 +2,10 @@ # MailHog Dockerfile # -FROM alpine:3.4 - -# Install ca-certificates, required for the "release message" feature: -RUN apk --no-cache add \ - ca-certificates +FROM golang:alpine # Install MailHog: RUN apk --no-cache add --virtual build-dependencies \ - go \ git \ && mkdir -p /root/gocode \ && export GOPATH=/root/gocode \