Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=${BUILDPLATFORM} golang:1.24-alpine as builder
FROM --platform=${BUILDPLATFORM} golang:1.23.12-alpine as builder

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

# Start a new, final image to reduce size.
FROM --platform=${BUILDPLATFORM} alpine as final
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -215,4 +215,4 @@ replace github.com/lightninglabs/loop/swapserverrpc => ./swapserverrpc

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

go 1.23.9
go 1.23.12
4 changes: 2 additions & 2 deletions tools/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23.9
FROM golang:1.23.12

RUN apt-get update && apt-get install -y git
ENV GOCACHE=/tmp/build/.cache
Expand All @@ -13,4 +13,4 @@ RUN cd /tmp \
&& cd /tmp/tools \
&& go install -trimpath github.com/golangci/golangci-lint/cmd/golangci-lint \
&& chmod -R 777 /tmp/build/
WORKDIR /build
WORKDIR /build
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/lightninglabs/loop/tools

go 1.23.9
go 1.23.12

require (
github.com/golangci/golangci-lint v1.64.6
Expand Down