Skip to content

Commit

Permalink
Merge pull request #66 from martin-g/use-build-arg-for-bioconda-utils…
Browse files Browse the repository at this point in the history
…-folder-name

ci: Make it possible to pass the path to bioconda-utils/ as a build-arg
  • Loading branch information
bgruening authored Jan 22, 2024
2 parents b2e3432 + 35f86fc commit 14de74c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion images/build-env/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ RUN . /opt/conda/etc/profile.d/conda.sh && \

FROM base as build
WORKDIR /tmp/repo
COPY ./bioconda-utils/ ./
ARG BIOCONDA_UTILS_FOLDER=./bioconda-utils/
COPY ${BIOCONDA_UTILS_FOLDER} ./
RUN . /opt/conda/etc/profile.d/conda.sh && conda list
RUN . /opt/conda/etc/profile.d/conda.sh && conda activate base && \
pip wheel . && \
Expand Down

0 comments on commit 14de74c

Please sign in to comment.