Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim authored Jul 24, 2023
1 parent 028b73a commit 7acac46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.15 as build-env
FROM golang:1.20 as build-env

WORKDIR /go/src/app
ADD . /go/src/app
Expand All @@ -9,4 +9,4 @@ RUN go build -o /go/bin/app

FROM gcr.io/distroless/base
COPY --from=build-env /go/bin/app /
CMD ["/app"]
CMD ["/app"]

0 comments on commit 7acac46

Please sign in to comment.