Changed compilation. Changed logging.

This commit is contained in:
Andrey Egorov
2024-07-25 15:30:09 +03:00
parent 760f8d9556
commit 9f9899d2cc
2 changed files with 11 additions and 11 deletions

View File

@ -2,9 +2,9 @@ FROM golang:1.22.5
WORKDIR /app
COPY ./ ./
RUN go mod download
RUN go get .
RUN CGO_ENABLED=0 GOOS=linux go build -o /modem-test
RUN CGO_ENABLED=0 GOOS=linux go build -o /mpu-test
CMD ["/modem-test"]
CMD ["/mpu-test"]