Files
ProjectOctopus/message_pusher/Dockerfile
2024-04-23 15:58:13 +08:00

11 lines
157 B
Docker

FROM golang:1.22-alpine3.19
MAINTAINER SuperWdd
WORKDIR /app
COPY ./build/message_pusher ./message_pusher
EXPOSE 8080
ENTRYPOINT ["/app/message_pusher"]