diff options
author | Marc Coquand <marc@mccd.space> | 2024-05-17 15:07:04 -0500 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-05-17 15:07:04 -0500 |
commit | 1b4ed54a85c31a032fbc841c62f674c3a8f2764b (patch) | |
tree | 9544f04a8516b215104c170c3129faa75b33cfe6 /Dockerfile | |
parent | 0f36dee9ed3225662e551fce165e30867b246656 (diff) | |
download | stitch-1b4ed54a85c31a032fbc841c62f674c3a8f2764b.tar.gz stitch-1b4ed54a85c31a032fbc841c62f674c3a8f2764b.tar.bz2 stitch-1b4ed54a85c31a032fbc841c62f674c3a8f2764b.zip |
Fix binary release
Diffstat (limited to '')
-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 |