Skip to content

Commit

Permalink
build: bump docker Go version
Browse files Browse the repository at this point in the history
  • Loading branch information
bhandras committed Aug 19, 2024
1 parent 1a31c6b commit 673753c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19-alpine as builder
FROM golang:1.22.3-alpine as builder

# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
# queries required to connect to linked containers succeed.
Expand All @@ -11,9 +11,9 @@ RUN apk add --no-cache --update alpine-sdk \
git \
make \
gcc \
&& cd /go/src/github.com/lightninglabs/faraday \
&& make \
&& make install
&& cd /go/src/github.com/lightninglabs/faraday \
&& make \
&& make install

# Start a new, final image.
FROM alpine as final
Expand Down

0 comments on commit 673753c

Please sign in to comment.