moq-rs/server/Dockerfile

11 lines
133 B
Docker
Raw Permalink Normal View History

2023-02-01 13:22:35 +00:00
FROM golang
WORKDIR /usr/src/warp
ENV GOPRIVATE=*
COPY . .
RUN go build -v -o /usr/local/bin/warp-server .
CMD [ "warp-server" ]