Merge pull request #400 from lafentres/patch-1

Update Dockerfile to go 1.18 syntax
This commit is contained in:
Tyndyll 2022-08-02 12:00:11 +01:00 committed by GitHub
commit a052f565bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,14 +2,14 @@
# MailHog Dockerfile # MailHog Dockerfile
# #
FROM golang:alpine as builder FROM golang:1.18-alpine as builder
# Install MailHog: # Install MailHog:
RUN apk --no-cache add --virtual build-dependencies \ RUN apk --no-cache add --virtual build-dependencies \
git \ git \
&& mkdir -p /root/gocode \ && mkdir -p /root/gocode \
&& export GOPATH=/root/gocode \ && export GOPATH=/root/gocode \
&& go get github.com/mailhog/MailHog && go install github.com/mailhog/MailHog@latest
FROM alpine:3 FROM alpine:3
# Add mailhog user/group with uid/gid 1000. # Add mailhog user/group with uid/gid 1000.