mpu/Dockerfile

11 lines
129 B
Docker
Raw Normal View History

2024-07-24 11:29:00 +00:00
FROM golang:1.22.5
WORKDIR /app
COPY ./ ./
2024-07-25 12:30:09 +00:00
RUN go get .
2024-07-24 11:29:00 +00:00
2024-07-25 12:30:09 +00:00
RUN CGO_ENABLED=0 GOOS=linux go build -o /mpu-test
2024-07-24 11:29:00 +00:00
2024-07-25 12:30:09 +00:00
CMD ["/mpu-test"]