ipv6-test-backend/Dockerfile

9 lines
133 B
Docker
Raw Normal View History

2024-08-17 08:41:02 +08:00
FROM golang:1.22 as build-stage
WORKDIR /app
ENV GOPROXY https://goproxy.cn,direct
COPY . .
RUN go build -o app .
CMD ["/app/app"]