Skip to content

Instantly share code, notes, and snippets.

@martinda
Last active August 20, 2017 15:35
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 martinda/32195d85ee6e1afc5d92efe3153f93db to your computer and use it in GitHub Desktop.
Save martinda/32195d85ee6e1afc5d92efe3153f93db to your computer and use it in GitHub Desktop.
Dockerfile for numpy
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