matrix-handler/Dockerfile

9 lines
218 B
Docker
Raw Normal View History

2021-02-04 07:38:07 +00:00
FROM golang:alpine AS build
WORKDIR /root/
COPY * /root/
RUN go build -o /root/matrix-handler cmd/svr/main.go
FROM scratch
COPY --from=build /root/matrix-handler /bin/matrix-handler
ENTRYPOINT ["/bin/matrix-handler"]