Created
February 11, 2020 16:32
-
-
Save rhyolight/fdd6152dfd76e924141a16576c1a9be8 to your computer and use it in GitHub Desktop.
Dockerfile attempt Ubuntu 18.04, Python 3.6, Numpy, Pandas, Cython
This file contains 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
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