FROM golang:1.19-alpine AS builder WORKDIR /app COPY . . RUN go mod init example RUN go mod tidy RUN go build -o webchat . ENTRYPOINT ["./webchat"] EXPOSE 8080