Revision 8d9c79c5e141a5d7fa7494d43dde0e0503bd996f authored by Raphaƫl Cauderlier on 03 February 2020, 20:33:42 UTC, committed by Pierre Boutillier on 11 February 2020, 13:00:53 UTC
See #674.

Main changes:
- More structure
- Added links to installation, getting started, and contribution instructions
- Added a remark on the protocol
- Remove the list of external links because we fail to maintain it
up-to-date and we already have a similar list in the documentation.
1 parent b24e55f
Raw File
build.Dockerfile
ARG BASE_IMAGE=registry.gitlab.com/tezos/opam-repository
ARG BASE_IMAGE_VERSION
FROM ${BASE_IMAGE}:${BASE_IMAGE_VERSION}
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
RUN opam exec -- make -C tezos all build-test
back to top