FROM golang:1.22.5 RUN apt update WORKDIR /code COPY . . RUN go mod download RUN go build -o Proxy main.go CMD ["./Proxy"]