16 lines
280 B
Docker
16 lines
280 B
Docker
# Building Backend
|
|
FROM golang:alpine as pusher-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=pusher-server /dist /pusher/server
|
|
|
|
EXPOSE 8444
|
|
|
|
CMD ["/pusher/server"]
|