Skip to content

Instantly share code, notes, and snippets.

View SpaceGold's full-sized avatar

Space Gold Securities - by Adam Zimmerman SpaceGold

  • Owner, Space Gold Securities
  • Oakland
  • LinkedIn in/adamz1
View GitHub Profile
@SpaceGold
SpaceGold / Dockerfile
Created September 7, 2021 20:57 — forked from pangyuteng/Dockerfile
docker miniconda ubuntu
# ref https://github.com/tebeka/pythonwise/blob/master/docker-miniconda/Dockerfile
FROM ubuntu:18.04
# System packages
RUN apt-get update && apt-get install -y curl
# Install miniconda to /miniconda
RUN curl -LO http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
RUN bash Miniconda3-latest-Linux-x86_64.sh -p /miniconda -b
RUN rm Miniconda3-latest-Linux-x86_64.sh