diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,7 +4,7 @@ FROM alpine:edge AS builder RUN apk add --no-cache make m4 which patch sudo wget git pkgconfig \ gcc g++ musl-dev linux-headers libffi libffi-dev pcre perl python3 \ gmp-dev pcre-dev xz-dev gmp xz coreutils \ - ocaml ocaml-compiler-libs ocaml-ocamldoc opam ocaml-findlib openssh + ocaml ocaml-compiler-libs ocaml-ocamldoc opam ocaml-findlib openssh rsync RUN chmod +s `which bwrap` RUN addgroup -g 1000 -S ocaml && adduser -u 1000 -D -S ocaml -G ocaml @@ -16,9 +16,10 @@ RUN eval `opam env --switch=4.14.2` RUN opam install --yes dune && eval `opam env --switch=4.14.2` -COPY --chown=ocaml:ocaml . /tmp/build +COPY --chown=ocaml:ocaml stitch.opam /tmp/build/ WORKDIR /tmp/build RUN git config --global --add safe.directory /tmp/build RUN opam install . --update-invariant --yes +COPY . . CMD eval `opam env` && dune build --profile release |