1
1
réplica de https://github.com/bumi/lntip synced 2025-09-18 12:57:14 +00:00
lntip/Dockerfile
2022-01-30 13:41:25 +01:00

19 líneas
188 B
Docker

# Go base image
FROM golang:1.17-alpine as builder
WORKDIR /app
COPY . .
RUN go install
RUN go build
FROM alpine:3.14
COPY --from=builder /app/lnme /lnme
EXPOSE 1323
CMD ["/lnme"]