mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-23 14:24:03 +00:00
Merge pull request #191 from J0WI/golang-base
Use official golang as base container
This commit is contained in:
commit
9b87c4cf3a
1 changed files with 1 additions and 6 deletions
|
@ -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 \
|
||||
|
|
Loading…
Reference in a new issue