FROM golang:1.19-alpine AS builder WORKDIR /app COPY . . RUN go build -o server ./main_2.go ENTRYPOINT ["./server"] EXPOSE 8081