comparison service/arduinoNode/Dockerfile @ 1148:8b4eda2cf0bd

fix pushconfig Ignore-this: 36fd12eb507fbe027b9a00dbd78f13af darcs-hash:a89764f2ad7791417d7c68d6ba30df92be97fe2c
author drewp <drewp@bigasterisk.com>
date Sat, 14 Apr 2018 23:46:54 -0700
parents 34fa399dc5c9
children 8f5a16a55f64
comparison
equal deleted inserted replaced
1147:ef494fe0499f 1148:8b4eda2cf0bd
1 FROM alpine:3.7 1 FROM alpine:3.7
2 2
3 WORKDIR /opt 3 WORKDIR /opt
4 RUN apk add --no-cache gcc build-base jpeg-dev lapack-dev libffi-dev linux-headers musl-dev openssl-dev py2-cffi py2-numpy py2-numpy-f2py py2-pip python2 python2-dev indent 4 RUN apk add --no-cache gcc build-base jpeg-dev lapack-dev libffi-dev linux-headers musl-dev openssl-dev py2-cffi py2-numpy py2-numpy-f2py py2-pip python2 python2-dev indent
5 5
6 COPY requirements.txt ./ 6 COPY requirements.txt ./
7 RUN pip download --cache-dir /tmp/pip-cache -r requirements.txt 7 RUN pip download --cache-dir /tmp/pip-cache -r requirements.txt
8 RUN pip install --cache-dir /tmp/pip-cache -r requirements.txt 8 RUN pip install --cache-dir /tmp/pip-cache -r requirements.txt
9 9