Update Alpine to 3.12 from 3.7

Signed-off-by: inductor <kohei.ota@hpe.com>
This commit is contained in:
inductor 2020-07-20 02:53:09 +09:00
parent 638c159abd
commit 361b0f5bb9
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"]

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"]