Files
gpt-wechat/Dockerfile
2023-04-24 09:24:47 +08:00

7 lines
71 B
Docker

FROM golang:1.19-alpine
COPY . .
RUN go build .
CMD ["./gpt-wework"]