ref: 23690d53dd05b1a2051fcb8745a1c1a8d45165c1
server/Dockerfile
1 2 3 4 5 6 7 8 9 10 11
FROM docker.io/golang:1.23rc2-alpine3.20 as build WORKDIR /app COPY . ./ RUN go mod download RUN go build -o yats-server . # stage2 - serve the app FROM build as serve EXPOSE 8080 CMD [ "./yats-server" ]