Revision 1f030c40d22fdde4faae3316fc468a10e0af268c authored by Romain Bardou on 07 May 2020, 13:29:31 UTC, committed by Pierre Boutillier on 07 May 2020, 15:21:10 UTC
`--data-dir` is probably one of the most used command-line options if you
have more than one data-directory or if you're not using the default one,
especially with the multinetwork node.
So I believe it is worth it to have a short-hand for it: `-d`.
1 parent 2efc285
Raw File
build.Dockerfile
ARG BASE_IMAGE=registry.gitlab.com/tezos/opam-repository
ARG BASE_IMAGE_VERSION
FROM ${BASE_IMAGE}:${BASE_IMAGE_VERSION}
# do not move the ARG below above the FROM or it gets erased
ARG GIT_SHORTREF
WORKDIR /home/tezos
RUN mkdir -p /home/tezos/tezos/scripts
COPY --chown=tezos:nogroup Makefile tezos
COPY --chown=tezos:nogroup active_protocol_versions tezos
COPY --chown=tezos:nogroup scripts/version.sh tezos/scripts/
COPY --chown=tezos:nogroup src tezos/src
COPY --chown=tezos:nogroup vendors tezos/vendors
ENV GIT_SHORTREF=${GIT_SHORTREF}
RUN opam exec -- make -C tezos all build-test
back to top