Skip to content

Commit

Permalink
add arg
Browse files Browse the repository at this point in the history
  • Loading branch information
benlee0423 committed Nov 18, 2023
1 parent f396d3c commit 048337a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docker/Dockerfile.ngen
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ ARG NGEN_BUILD_CONFIG_TYPE="Release" \
################################################################################################################
################################################################################################################
##### Create intermediate Docker build stage for building framework in Rocky Linux environment
ARG TAG_NAME
FROM awiciroh/ngen-deps:${TAG_NAME} as rocky_init_repo
ARG REPO_URL \
BRANCH \
Expand Down Expand Up @@ -39,6 +40,7 @@ RUN cd ${WORKDIR} \

################################################################################################################
################################################################################################################
ARG TAG_NAME
FROM awiciroh/ngen-deps:${TAG_NAME} as rocky_ngen_build_testing

COPY --chown=${USER} --from=rocky_init_repo ${WORKDIR}/ngen ${WORKDIR}/ngen
Expand All @@ -48,6 +50,7 @@ WORKDIR ${WORKDIR}/ngen
################################################################################################################
################################################################################################################
##### Create intermediate Docker build stage for building framework in Rocky Linux environment
ARG TAG_NAME
FROM awiciroh/ngen-deps:${TAG_NAME} as rocky_build_ngen

ARG REPO_URL \
Expand All @@ -71,7 +74,9 @@ ARG REPO_URL \
BUILD_SLOTH="true"

COPY --chown=${USER} --from=rocky_init_repo ${WORKDIR}/ngen ${WORKDIR}/ngen
ARG TAG_NAME
COPY --chown=${USER} --from=awiciroh/t-route:${TAG_NAME} ${WORKDIR}/t-route/wheels /tmp/t-route-wheels
ARG TAG_NAME
COPY --chown=${USER} --from=awiciroh/t-route:${TAG_NAME} ${WORKDIR}/t-route/requirements.txt /tmp/t-route-requirements.txt
ENV BOOST_ROOT=${WORKDIR}/boost

Expand Down

0 comments on commit 048337a

Please sign in to comment.