mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-23 14:24:03 +00:00
Update Dockerfile to go1.18 syntax
As of 1.18, `go get <package>` no longer builds executables. `go install` should be used to install an executable instead. See the deprecation message for more information: https://go.dev/doc/go-get-install-deprecation Pinning to a specific go Docker image will help keep things from breaking unexpectedly in the future
This commit is contained in:
parent
4231f068f1
commit
6fcf01a4b0
1 changed files with 2 additions and 2 deletions
|
@ -2,14 +2,14 @@
|
|||
# MailHog Dockerfile
|
||||
#
|
||||
|
||||
FROM golang:alpine as builder
|
||||
FROM golang:1.18-alpine as builder
|
||||
|
||||
# Install MailHog:
|
||||
RUN apk --no-cache add --virtual build-dependencies \
|
||||
git \
|
||||
&& mkdir -p /root/gocode \
|
||||
&& export GOPATH=/root/gocode \
|
||||
&& go get github.com/mailhog/MailHog
|
||||
&& go install github.com/mailhog/MailHog@latest
|
||||
|
||||
FROM alpine:3
|
||||
# Add mailhog user/group with uid/gid 1000.
|
||||
|
|
Loading…
Reference in a new issue