Skip to content

Instantly share code, notes, and snippets.

@cmpute
Last active February 3, 2021 03:12
Show Gist options
  • Save cmpute/ed0103d8834b6dd232cc0e8de431ca0e to your computer and use it in GitHub Desktop.
Save cmpute/ed0103d8834b6dd232cc0e8de431ca0e to your computer and use it in GitHub Desktop.
Github action runner image with conda installed
# 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