1
0
Fork 0
go-wxhelper/Dockerfile

21 lines
474 B
Docker
Raw Permalink Normal View History

2023-09-21 17:33:59 +08:00
FROM golang:alpine as builder
WORKDIR /builder
COPY . .
#ENV GO111MODULE=on
#ENV GOPROXY=https://goproxy.cn,direct
2023-09-21 17:33:59 +08:00
2023-09-25 14:16:59 +08:00
RUN go version
2023-11-30 14:20:48 +08:00
RUN go mod download && go build -o wxhelper
2023-11-30 11:48:47 +08:00
RUN ls -lh && chmod -R +x ./*
2023-09-21 17:33:59 +08:00
FROM code.hyxc1.com/open/alpine:3.16.0 as runner
2023-09-21 17:33:59 +08:00
LABEL org.opencontainers.image.authors="lxh@cxh.cn"
EXPOSE 19099
2023-11-30 11:38:20 +08:00
EXPOSE 8080
2023-09-21 17:33:59 +08:00
WORKDIR /app
2023-11-30 14:20:48 +08:00
COPY --from=builder /builder/wxhelper ./wxhelper
2023-11-30 11:48:47 +08:00
COPY --from=builder /builder/views ./views
2023-11-30 14:20:48 +08:00
CMD ./wxhelper