mpu/Dockerfile
2024-07-25 15:30:09 +03:00

11 lines
129 B
Docker

FROM golang:1.22.5
WORKDIR /app
COPY ./ ./
RUN go get .
RUN CGO_ENABLED=0 GOOS=linux go build -o /mpu-test
CMD ["/mpu-test"]