https://gitlab.com/tezos/tezos
Revision d43da421d2f071fe3231cd4143460168eb988119 authored by Ding Xiang Fei on 19 September 2022, 08:47:57 UTC, committed by Ding Xiang Fei on 23 September 2022, 11:05:00 UTC
1 parent 8e662f7
Raw File
Tip revision: d43da421d2f071fe3231cd4143460168eb988119 authored by Ding Xiang Fei on 19 September 2022, 08:47:57 UTC
Proto: assert equality of Script_int when re-exporting
Tip revision: d43da42
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
ARG GIT_DATETIME
ARG GIT_VERSION
WORKDIR /home/tezos
RUN mkdir -p /home/tezos/tezos/scripts /home/tezos/tezos/script-inputs
COPY --chown=tezos:nogroup Makefile tezos
COPY --chown=tezos:nogroup script-inputs/active_protocol_versions tezos/script-inputs/
COPY --chown=tezos:nogroup script-inputs/tx_rollup_protocol_versions tezos/script-inputs/
COPY --chown=tezos:nogroup script-inputs/sc_rollup_protocol_versions tezos/script-inputs/
COPY --chown=tezos:nogroup dune tezos
COPY --chown=tezos:nogroup scripts/version.sh tezos/scripts/
COPY --chown=tezos:nogroup src tezos/src
COPY --chown=tezos:nogroup opam tezos/opam
COPY --chown=tezos:nogroup dune tezos/dune
COPY --chown=tezos:nogroup dune-workspace tezos/dune-workspace
COPY --chown=tezos:nogroup dune-project tezos/dune-project
COPY --chown=tezos:nogroup vendors tezos/vendors
ENV GIT_SHORTREF=${GIT_SHORTREF}
ENV GIT_DATETIME=${GIT_DATETIME}
ENV GIT_VERSION=${GIT_VERSION}
RUN opam exec -- make -C tezos release
back to top