Files
Message-Push-Nest/Dockerfile
T
2024-01-01 13:41:32 +08:00

10 lines
141 B
Docker

FROM golang:latest
ENV GOPROXY https://goproxy.cn,direct
WORKDIR /app
COPY . /app
RUN go build .
EXPOSE 8000
ENTRYPOINT ["./Message-Nest"]