Skip to content

Commit 0af425b

Browse files
committed
build: bump Go to v1.23.12
1 parent 2f21a48 commit 0af425b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=${BUILDPLATFORM} golang:1.24-alpine as builder
1+
FROM --platform=${BUILDPLATFORM} golang:1.23.12-alpine as builder
22

33
# Copy in the local repository to build from.
44
COPY . /go/src/github.com/lightningnetwork/loop
@@ -14,8 +14,8 @@ ENV GO111MODULE on
1414
RUN apk add --no-cache --update alpine-sdk \
1515
git \
1616
make \
17-
&& cd /go/src/github.com/lightningnetwork/loop \
18-
&& make install
17+
&& cd /go/src/github.com/lightningnetwork/loop \
18+
&& make install
1919

2020
# Start a new, final image to reduce size.
2121
FROM --platform=${BUILDPLATFORM} alpine as final

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,4 +215,4 @@ replace github.com/lightninglabs/loop/swapserverrpc => ./swapserverrpc
215215

216216
replace github.com/lightninglabs/loop/looprpc => ./looprpc
217217

218-
go 1.23.9
218+
go 1.23.12

tools/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.9
1+
FROM golang:1.23.12
22

33
RUN apt-get update && apt-get install -y git
44
ENV GOCACHE=/tmp/build/.cache
@@ -13,4 +13,4 @@ RUN cd /tmp \
1313
&& cd /tmp/tools \
1414
&& go install -trimpath github.com/golangci/golangci-lint/cmd/golangci-lint \
1515
&& chmod -R 777 /tmp/build/
16-
WORKDIR /build
16+
WORKDIR /build

tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/lightninglabs/loop/tools
22

3-
go 1.23.9
3+
go 1.23.12
44

55
require (
66
github.com/golangci/golangci-lint v1.64.6

0 commit comments

Comments
 (0)