Skip to content

Commit

Permalink
CREATE: multiple layer
Browse files Browse the repository at this point in the history
  • Loading branch information
SzakacsAdam committed Sep 20, 2024
1 parent 970dc87 commit c83e813
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@ RUN set -eux \
COPY install_scripts/ ${INSTALL_SCRIPT_DIR}/

RUN set -eux \
&& chmod +x ${INSTALL_SCRIPT_DIR}/*.sh \
&& ${INSTALL_SCRIPT_DIR}/install_commons.sh \
&& ${INSTALL_SCRIPT_DIR}/install_python.sh \
&& ${INSTALL_SCRIPT_DIR}/install_docker.sh \
&& chmod +x ${INSTALL_SCRIPT_DIR}/*.sh
&& ${INSTALL_SCRIPT_DIR}/install_commons.sh
RUN set -eux \
&& ${INSTALL_SCRIPT_DIR}/install_python.sh
RUN set -eux \
&& ${INSTALL_SCRIPT_DIR}/install_docker.sh
RUN set -eux \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit c83e813

Please sign in to comment.