Messaging/Dockerfile
2024-06-22 18:08:18 +08:00

16 lines
292 B
Docker

# Building Backend
FROM golang:alpine as messaging-server
WORKDIR /source
COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -buildvcs -o /dist ./pkg/main.go
# Runtime
FROM golang:alpine
COPY --from=messaging-server /dist /messaging/server
EXPOSE 8447
CMD ["/messaging/server"]