3eddca508b
Also install `ocp-indent` and embeds `.ocp-indent` in the docker image.
12 lines
267 B
Docker
12 lines
267 B
Docker
FROM $base_image
|
|
|
|
COPY src tezos/src
|
|
COPY test tezos/test
|
|
COPY scripts tezos/scripts
|
|
COPY Makefile jbuild .ocp-indent tezos/
|
|
|
|
RUN sudo chown -R opam /home/opam/tezos && \
|
|
cd tezos && \
|
|
opam config exec -- make all && \
|
|
opam config exec -- make build-test
|