Skip to content
Snippets Groups Projects
Commit 956e4d51 authored by Vlad Kondratiev's avatar Vlad Kondratiev
Browse files

debugging with COPY/ADD/WORKDIR

parent e25ea6c5
No related branches found
No related tags found
1 merge request!4Update docs
Pipeline #114515 failed
Pipeline: pulp2-cwl-redigitization

#114516

    ...@@ -4,7 +4,6 @@ FROM ubuntu:22.04 ...@@ -4,7 +4,6 @@ FROM ubuntu:22.04
    # Lightweight container with minimum to run digitize3.py # Lightweight container with minimum to run digitize3.py
    # #
    ENV INSTALL_DIR=/usr/local ENV INSTALL_DIR=/usr/local
    WORKDIR /src
    RUN export DEBIAN_FRONTEND=noninteractive && \ RUN export DEBIAN_FRONTEND=noninteractive && \
    apt-get -y update && apt-get -y upgrade && \ apt-get -y update && apt-get -y upgrade && \
    ...@@ -26,7 +25,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \ ...@@ -26,7 +25,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
    # Install toil # Install toil
    RUN python3 -m pip install --no-cache-dir --upgrade toil[cwl] RUN python3 -m pip install --no-cache-dir --upgrade toil[cwl]
    ADD /src ${INSTALL_DIR}/src/pulp2-cwl-redigitization COPY / ${INSTALL_DIR}/src/pulp2-cwl-redigitization
    COPY /src/scripts/digitize3.py ${INSTALL_DIR}/bin COPY /scripts/digitize3.py ${INSTALL_DIR}/bin
    RUN ${INSTALL_DIR}/bin/digitize3.py -h RUN ${INSTALL_DIR}/bin/digitize3.py -h
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment