FROM golang:onbuild WORKDIR ./laba4 COPY ./ ./ RUN go build -o ip . EXPOSE 8000 ENTRYPOINT ["./ip"]