wireguard-dashboard/Dockerfile
coward 115ede04aa
Some checks failed
continuous-integration/drone/tag Build is failing
🎨
2024-05-08 17:25:22 +08:00

26 lines
386 B
Docker

FROM golang:alpine as build
RUN apk add upx
WORKDIR /build
COPY . .
# sqlite必须
ENV GO111MODULE=on
ENV GOPROXY=https://goproxy.cn,direct
RUN go build -ldflags="-s -w" -o app && up -9 app
RUN ls -lh && chmod +x ./app
FROM alpine
WORKDIR /app
RUN mkdir -p db
COPY --from=build /build/app /app
COPY --from=build /build/template/* /app/template/
RUN ls -al
ENTRYPOINT ["./app"]