Browse Source

Update Dockerfile

master
Jan-Lukas Else 3 years ago
parent
commit
f79df1a8c3
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Dockerfile

+ 2
- 2
Dockerfile View File

@ -1,11 +1,11 @@
FROM golang:1.14-alpine as build
FROM golang:1.15-alpine as build
RUN apk add --no-cache gcc musl-dev tzdata
ADD . /app
WORKDIR /app
RUN go test
RUN go build
FROM alpine:3.11
FROM alpine:3.12
RUN apk add --no-cache tzdata ca-certificates
COPY --from=build /app/mailygo /bin/
WORKDIR /app


Loading…
Cancel
Save