Messaging/Dockerfile

16 lines
292 B
Docker
Raw Permalink Normal View History

2024-03-26 15:05:13 +00:00
# Building Backend
FROM golang:alpine as messaging-server
WORKDIR /source
COPY . .
2024-06-22 10:08:18 +00:00
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -buildvcs -o /dist ./pkg/main.go
2024-03-26 15:05:13 +00:00
# Runtime
FROM golang:alpine
COPY --from=messaging-server /dist /messaging/server
EXPOSE 8447
CMD ["/messaging/server"]