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