This repository was archived by the owner on Feb 22, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ RUN apk add --no-cache \
20
20
musl-dev python3-dev py-pgen cython openblas-dev && \
21
21
apk add --no-cache libstdc++ openblas libzmq && \
22
22
ln -s locale.h /usr/include/xlocale.h && \
23
- pip install cffi==1.12.3 --no-cache-dir --compile && \
24
23
pip install . --no-cache-dir --compile && \
25
24
find /usr/lib/python3.7/ -name 'tests' -exec rm -r '{}' + && \
26
25
find /usr/lib/python3.7/site-packages/ -name '*.so' -print -exec sh -c 'file "{}" | grep -q "not stripped" && strip -s "{}"' \; && \
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ ADD setup.py MANIFEST.in requirements.txt README.md ./
20
20
ADD gnes ./gnes/
21
21
22
22
RUN ln -s locale.h /usr/include/xlocale.h && \
23
- pip install cffi==1.12.3 --no-cache-dir --compile && \
24
23
pip install . --no-cache-dir --compile && \
25
24
rm -rf /tmp/* && rm -rf /gnes && \
26
25
rm /usr/include/xlocale.h
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
27
27
ADD setup.py MANIFEST.in requirements.txt README.md ./
28
28
ADD gnes ./gnes/
29
29
30
- RUN pip3 install cffi==1.12.3 --no-cache-dir --compile && pip3 install . --no-cache-dir --compile && \
30
+ RUN pip3 install . --no-cache-dir --compile && \
31
31
rm -rf /tmp/* && rm -rf /gnes
32
32
33
33
WORKDIR /
You can’t perform that action at this time.
0 commit comments