Last active
February 3, 2021 03:12
-
-
Save cmpute/ed0103d8834b6dd232cc0e8de431ca0e to your computer and use it in GitHub Desktop.
Github action runner image with conda installed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See https://github.com/tcardonne/docker-github-runner for instructions | |
FROM tcardonne/github-runner:ubuntu-20.04 | |
RUN curl -L -o miniconda.sh https://repo.anaconda.com/miniconda/Miniconda2-latest-Linux-x86_64.sh | |
RUN bash miniconda.sh -b -p /miniconda | |
ENV CONDA="/miniconda" | |
ENTRYPOINT ["/entrypoint.sh"] | |
CMD ["/usr/bin/supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment