1
1
mirror of https://github.com/bumi/lntip synced 2025-06-16 01:38:12 +00:00
lntip/Dockerfile
2021-10-27 15:29:18 +01:00

19 lines
286 B
Docker

# Go base image
FROM golang:1.17-alpine as builder
RUN go get github.com/GeertJohan/go.rice && go get github.com/GeertJohan/go.rice/rice
WORKDIR /app
COPY . .
RUN go install
RUN rice embed-go && go build
FROM golang:1.17-alpine
COPY --from=builder /app/lnme /lnme
CMD ["/lnme"]