go-wxhelper/Dockerfile

20 lines
418 B
Docker
Raw 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-09-21 17:33:59 +08:00
RUN go mod download && go build -o app
RUN ls -lh && chmod +x ./app
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
WORKDIR /app
COPY --from=builder /builder/app ./app
2023-11-30 11:38:12 +08:00
COPY ./views ./views
2023-09-21 17:33:59 +08:00
CMD ./app