ms-tester/Dockerfile

9 lines
82 B
Docker
Raw Normal View History

2024-07-27 07:31:04 +00:00
FROM golang:latest
WORKDIR /app
COPY . .
RUN go build ./main.go
CMD ["./main"]