Skip to content

Instantly share code, notes, and snippets.

@rhyolight
Created February 11, 2020 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rhyolight/fdd6152dfd76e924141a16576c1a9be8 to your computer and use it in GitHub Desktop.
Save rhyolight/fdd6152dfd76e924141a16576c1a9be8 to your computer and use it in GitHub Desktop.
Dockerfile attempt Ubuntu 18.04, Python 3.6, Numpy, Pandas, Cython
FROM ubuntu:18.04 as base
FROM python:3.6.10-alpine3.11
COPY --from=base . .
RUN apt update && \
apt install -y gcc
COPY . /nab
WORKDIR /nab
RUN pip install numpy
RUN pip install cython
RUN pip install pandas
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment