diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..38449b3 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM alpine:latest AS build-env + +RUN apk add --no-cache cargo pkgconfig libressl-dev +RUN cargo install monocle + + +FROM alpine:latest +RUN apk add --no-cache gcc libressl-dev +COPY --from=build-env /root/.cargo/bin /root/.cargo/bin + +ENTRYPOINT [ "/root/.cargo/bin/monocle" ]