wireguard-dashboard/Dockerfile

21 lines
326 B
Docker
Raw Normal View History

2024-05-08 14:21:49 +08:00
FROM golang:alpine as build
WORKDIR /build
COPY . .
ENV GO111MODULE=on
ENV GOPROXY=https://goproxy.cn,direct
RUN go mod download && go build -o app
RUN ls -lh && chmod +x ./app
FROM alpine
COPY --from=build /build/app /bin
COPY --from=build /template/* /template/
RUN ls -al /bin/ | grep 'app'
ENTRYPOINT ["/bin/app"]