FROM golang:latest WORKDIR /app COPY go.mod ./ RUN go mod download COPY *.go ./ RUN go build -o /lab4 EXPOSE 8080 CMD [ "/lab4" ]