Skip to content

Commit

Permalink
Merge pull request docker#77 from inductor/update_alpine
Browse files Browse the repository at this point in the history
Update Alpine to 3.12 from 3.7
  • Loading branch information
glours authored Aug 10, 2020
2 parents dcdb498 + 361b0f5 commit 3305168
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nginx-golang-mysql/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion nginx-golang-postgres/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit 3305168

Please sign in to comment.