Skip to content

Instantly share code, notes, and snippets.

@bresson
Created June 13, 2020 20:01
Show Gist options
  • Save bresson/6a1c1116ab505ebf79b4021fbc08d9ea to your computer and use it in GitHub Desktop.
Save bresson/6a1c1116ab505ebf79b4021fbc08d9ea to your computer and use it in GitHub Desktop.
Dockerfile with base Ubuntu image, python3 and some data, science libs for High Performance Python
FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y \
pkg-config \
curl \
libfreetype6-dev \
libc6-dev \
libpng-dev \
python3 \
tzdata \
python3-numpy \
python3-numexpr \
python3-matplotlib \
cython3 \
python3-cffi \
python3-mpi4py \
python3-scipy \
ipython3 \
python3-venv \
python3-pip \
git
WORKDIR ${PWD}/app
COPY requirements.txt .
RUN pip3 install -r requirements.txt
# Make sure your terminal is inside the same directory as the Dockerfile!!!
# To BUILD: docker build -t ubuntu:hpp .
# To RUN: docker run -it --rm --volume ${PWD}:/app -t ubuntu:hpp /bin/bash
@bresson
Copy link
Author

bresson commented Jun 13, 2020

Starter image for custom Docker image with Ubuntu, Python3, etc. Lots of room for improvements ....

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment