Files
Message-Push-Nest/Dockerfile
T

10 lines
141 B
Docker
Raw Normal View History

2023-12-30 17:40:20 +08:00
FROM golang:latest
ENV GOPROXY https://goproxy.cn,direct
2024-01-01 13:41:32 +08:00
WORKDIR /app
COPY . /app
2023-12-30 17:40:20 +08:00
RUN go build .
EXPOSE 8000
2024-01-01 13:41:32 +08:00
ENTRYPOINT ["./Message-Nest"]