lntip/Dockerfile

19 lines
188 B
Docker
Raw Permalink Normal View History

2021-10-27 14:29:18 +00:00
# Go base image
FROM golang:1.17-alpine as builder
WORKDIR /app
COPY . .
RUN go install
2022-01-30 12:36:56 +00:00
RUN go build
2021-10-27 14:29:18 +00:00
2021-10-27 14:57:55 +00:00
FROM alpine:3.14
2021-10-27 14:29:18 +00:00
COPY --from=builder /app/lnme /lnme
2021-10-27 16:35:06 +00:00
EXPOSE 1323
2021-10-27 14:29:18 +00:00
CMD ["/lnme"]