ms-tester/Dockerfile
2024-07-27 07:31:04 +00:00

9 lines
82 B
Docker

FROM golang:latest
WORKDIR /app
COPY . .
RUN go build ./main.go
CMD ["./main"]