Last active
August 20, 2017 15:35
-
-
Save martinda/32195d85ee6e1afc5d92efe3153f93db to your computer and use it in GitHub Desktop.
Dockerfile for numpy
This file contains hidden or 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 python:3.6.2-alpine3.6 | |
WORKDIR /opt/tools/icestorm | |
RUN apk add --no-cache \ | |
bash \ | |
build-base \ | |
libftdi1-dev \ | |
linux-headers \ | |
musl-dev \ | |
openblas-dev \ | |
python3-dev | |
# Setup the python environment for running the icetime tests | |
RUN pip install --no-cache-dir --disable-pip-version-check numpy==1.13.1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment