mirror of
https://github.com/getAlby/lndhub.go.git
synced 2026-01-06 06:26:15 +01:00
30 lines
695 B
Docker
30 lines
695 B
Docker
FROM golang:1.20-alpine as builder
|
|
|
|
# Move to working directory /build
|
|
WORKDIR /build
|
|
|
|
# Copy and download dependency using go mod
|
|
COPY go.mod .
|
|
COPY go.sum .
|
|
RUN go mod download
|
|
|
|
# Copy the code into the container
|
|
COPY . .
|
|
|
|
# Build the application
|
|
RUN go build -o main ./cmd/server
|
|
|
|
# Build the utility scripts
|
|
RUN go build ./cmd/invoice-republishing
|
|
RUN go build ./cmd/payment-reconciliation
|
|
|
|
# Start a new, final image to reduce size.
|
|
FROM alpine as final
|
|
|
|
# Copy the binaries and entrypoint from the builder image.
|
|
COPY --from=builder /build/main /bin/
|
|
COPY --from=builder /build/invoice-republishing /bin/
|
|
COPY --from=builder /build/payment-reconciliation /bin/
|
|
|
|
ENTRYPOINT [ "/bin/main" ]
|