Fixed some internet packages errors

This commit is contained in:
Andrey Egorov
2024-07-29 14:02:06 +03:00
parent ebab41c510
commit 2eb21228e3
3 changed files with 20 additions and 14 deletions

View File

@ -4,7 +4,11 @@ WORKDIR /app
COPY ./ ./
RUN go mod download
RUN apt-get update
RUN apt-get install -y ppp
RUN apt-get install -y net-tools
RUN CGO_ENABLED=0 GOOS=linux go build -o /modem-test
CMD ["/modem-test"]
CMD ["/modem-test"]