FROM golang:alpine as golang COPY app /app WORKDIR /app RUN go build -o main . CMD ["/app/main"]