Skip to content

Commit

Permalink
Dockerfile: yml -> lock
Browse files Browse the repository at this point in the history
  • Loading branch information
pdiakumis committed Nov 18, 2023
1 parent 1549bc9 commit 3ba16f2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ RUN mamba config \
mamba clean --all --force-pkgs-dirs

ARG ENV_NAME="rnasum_env"
COPY ./deploy/conda/env/lock/rnasum-linux-64.yml .
RUN conda-lock install --name ${ENV_NAME} rnasum-linux-64.yml && \
ARG LOCK_FILE="rnasum-linux-64.lock"
COPY ./deploy/conda/env/lock/${LOCK_FILE} .
RUN conda-lock install --name ${ENV_NAME} ${LOCK_FILE} && \
mamba clean --all --force-pkgs-dirs

ARG MAMBA_PREFIX="/opt/conda"
Expand Down

0 comments on commit 3ba16f2

Please sign in to comment.