Skip to content

Commit

Permalink
docker: Update to golang 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
danielunderwood committed Feb 25, 2023
1 parent 917ad1e commit 1af6917
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.16 AS build
FROM golang:1.17 AS build

WORKDIR /go/src/github.com/danielunderwood/log2http
COPY *.go ./
Expand All @@ -9,4 +9,4 @@ FROM debian:11-slim
COPY --from=build /go/src/github.com/danielunderwood/log2http/log2http /usr/bin
# Install ca-certificates so TLS can be verified
RUN apt-get update && apt-get install -y ca-certificates && apt-get clean && rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["/usr/bin/log2http"]
ENTRYPOINT ["/usr/bin/log2http"]

0 comments on commit 1af6917

Please sign in to comment.