Merge pull request #77 from inductor/update_alpine

Update Alpine to 3.12 from 3.7
This commit is contained in:
Guillaume Lours
2020-08-10 15:03:54 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ COPY . .
RUN go build -o server .
FROM alpine:3.7
FROM alpine:3.12
EXPOSE 8000
COPY --from=build /go/src/github.com/org/repo/server /server
CMD ["/server"]