Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
postpop authored Feb 9, 2023
1 parent 15ee69a commit 519b69e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ FROM continuumio/miniconda3:4.7.10
LABEL "repository"="https://github.com/janclemenslab/conda-build-publish-action"
LABEL "maintainer"="Jan Clemens"

RUN conda install -n base conda-libmamba-solver
RUN conda update -n base conda -y -c conda-forge
RUN conda install -n base mamba -y -c conda-forge
RUN conda install -n base conda-libmamba-solver -y -c conda-forge
RUN conda config --set anaconda_upload yes --set always_yes yes --set changeps1 no --set solver libmamba
RUN conda install -y anaconda-client conda-build boa conda-verify pip git -c conda-forge
RUN conda install -n base anaconda-client conda-build boa conda-verify pip git -y -c conda-forge
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 519b69e

Please sign in to comment.