File tree Expand file tree Collapse file tree 9 files changed +19
-12
lines changed Expand file tree Collapse file tree 9 files changed +19
-12
lines changed Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ Backup link: `https://cf.ext.maku.ml/whl/stable.html`
10
10
11
11
---
12
12
13
- ` whl ` list: [ packages.txt] ( docker/packages.txt )
13
+ ` whl ` list: [ packages.txt] ( docker/packages-stdln .txt )
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ set -ex
5
5
# mkdir whl || :
6
6
7
7
cd docker
8
- docker build -t kumatea/ext:py39 -f py39/Dockerfile .
9
- docker build -t kumatea/ext:py38 -f py38/Dockerfile .
10
- docker build -t kumatea/ext:py37 -f py37/Dockerfile .
11
- docker build -t kumatea/ext:py36 -f py36/Dockerfile .
8
+ docker build --pull -t kumatea/ext:py39 -f py39/Dockerfile .
9
+ docker build --pull -t kumatea/ext:py38 -f py38/Dockerfile .
10
+ docker build --pull -t kumatea/ext:py37 -f py37/Dockerfile .
11
+ docker build --pull -t kumatea/ext:py36 -f py36/Dockerfile .
12
12
13
13
docker image prune
14
14
Original file line number Diff line number Diff line change 3
3
set -ex
4
4
5
5
# pip config set global.index-url https://mirrors.matrix.moe/pypi/web/simple
6
- pip install -U -r /root/packages.txt -f https://ext.maku.ml/wheels.html -f https://torch.maku.ml/whl/stable.html
6
+ pip install -U -r /root/packages-stdln.txt -f https://ext.maku.ml/wheels.html -f https://torch.maku.ml/whl/stable.html
7
+ pip install -U -r /root/packages-deps.txt -f https://ext.maku.ml/wheels.html -f https://torch.maku.ml/whl/stable.html
7
8
mkdir /root/whl
8
9
cp -a $( find /root/.cache/pip | grep whl | tr ' \n' ' ' ) /root/whl/ || echo " No new whl is built!"
Original file line number Diff line number Diff line change
1
+ fastai
2
+ fastbook
Original file line number Diff line number Diff line change
1
+ # stdln for standalone, not stdin
2
+
1
3
numpy
2
4
Pillow
3
5
PyYAML
4
6
cffi
5
7
scikit-learn
6
- fastai
7
- fastbook
Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ RUN set -ex \
6
6
&& python3 -m pip install -U pip setuptools wheel \
7
7
&& rm -rf /root/.cache/*
8
8
9
- COPY packages.txt /root/
9
+ COPY packages-deps.txt /root/
10
+ COPY packages-stdln.txt /root/
10
11
COPY build-wheels.sh /root/
11
12
12
13
CMD ["/bin/bash" ]
Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ RUN set -ex \
6
6
&& python3 -m pip install -U pip setuptools wheel \
7
7
&& rm -rf /root/.cache/*
8
8
9
- COPY packages.txt /root/
9
+ COPY packages-deps.txt /root/
10
+ COPY packages-stdln.txt /root/
10
11
COPY build-wheels.sh /root/
11
12
12
13
CMD ["/bin/bash" ]
Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ RUN set -ex \
6
6
&& python3 -m pip install -U pip setuptools wheel \
7
7
&& rm -rf /root/.cache/*
8
8
9
- COPY packages.txt /root/
9
+ COPY packages-deps.txt /root/
10
+ COPY packages-stdln.txt /root/
10
11
COPY build-wheels.sh /root/
11
12
12
13
CMD ["/bin/bash" ]
Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ RUN set -ex \
6
6
&& python3 -m pip install -U pip setuptools wheel \
7
7
&& rm -rf /root/.cache/*
8
8
9
- COPY packages.txt /root/
9
+ COPY packages-deps.txt /root/
10
+ COPY packages-stdln.txt /root/
10
11
COPY build-wheels.sh /root/
11
12
12
13
CMD ["/bin/bash" ]
You can’t perform that action at this time.
0 commit comments