Loading Dockerfile +1 −2 Original line number Original line Diff line number Diff line Loading @@ -40,9 +40,8 @@ RUN apt-get update && apt-get install -y \ # Copy application code # Copy application code COPY . . COPY . . ARG PIP_INDEX_URL # Install Python dependencies # Install Python dependencies RUN python -m pip install --no-cache-dir -r requirements.txt --extra-index-url ${PIP_INDEX_URL} --trusted-host gitlab.i2cat.net RUN python -m pip install --no-cache-dir -r requirements.txt # Set working directory for application execution # Set working directory for application execution WORKDIR /usr/app/src/ WORKDIR /usr/app/src/ Loading Loading
Dockerfile +1 −2 Original line number Original line Diff line number Diff line Loading @@ -40,9 +40,8 @@ RUN apt-get update && apt-get install -y \ # Copy application code # Copy application code COPY . . COPY . . ARG PIP_INDEX_URL # Install Python dependencies # Install Python dependencies RUN python -m pip install --no-cache-dir -r requirements.txt --extra-index-url ${PIP_INDEX_URL} --trusted-host gitlab.i2cat.net RUN python -m pip install --no-cache-dir -r requirements.txt # Set working directory for application execution # Set working directory for application execution WORKDIR /usr/app/src/ WORKDIR /usr/app/src/ Loading