d87a6cd556
And minor fix: - introduce configuration file for OCaml and alpine versions - add missing `libssl1.0` in docker image - remove the split call to `install_build_deps` (not required anymore) - rename scripts
8 lines
191 B
Docker
8 lines
191 B
Docker
FROM $base_name:$base_version
|
|
|
|
COPY . /home/opam/tezos
|
|
RUN sudo chown -R opam /home/opam/tezos && \
|
|
opam config exec -- make -C tezos -j4 && \
|
|
mkdir bin && \
|
|
cp tezos/tezos-* bin
|