Paperclip/Dockerfile

16 lines
292 B
Docker
Raw Permalink Normal View History

2024-05-17 07:59:51 +00:00
# Building Backend
FROM golang:alpine as paperclip-server
WORKDIR /source
COPY . .
2024-06-16 15:24:54 +00:00
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -buildvcs -o /dist ./pkg/main.go
2024-05-17 07:59:51 +00:00
# Runtime
FROM golang:alpine
COPY --from=paperclip-server /dist /paperclip/server
EXPOSE 8445
CMD ["/paperclip/server"]