1432
|
1 FROM bang6:5000/base_x86
|
|
2
|
1439
|
3 RUN pip3 install grpcio==1.22.0
|
1432
|
4
|
|
5 WORKDIR /opt
|
|
6
|
|
7 COPY requirements.txt ./
|
|
8 RUN egrep -v ws281 requirements.txt > requirements_x86_ok.txt
|
|
9
|
1439
|
10 RUN pip3 install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements_x86_ok.txt
|
|
11 RUN pip3 install -U 'https://github.com/drewp/cyclone/archive/python3.zip?v3'
|
|
12
|
1432
|
13
|
1439
|
14 RUN pip3 install pytype
|
|
15 RUN pip3 install mypy
|
|
16
|
1432
|
17
|
|
18 COPY *.py ./
|
|
19 COPY config/ ./config/
|
1439
|
20
|
|
21 # mypy piNode.py
|