annotate service/piNode/Dockerfile.check @ 1432:ff868a0abac7
add pytype dockerfile
Ignore-this: b32fd623ecc2a0e1ce400e80c077c33f
darcs-hash:f05b73e7a21c46fe2ce9e4d6cda9fa0f1f7904d2
author |
drewp <drewp@bigasterisk.com> |
date |
Sat, 10 Aug 2019 23:44:17 -0700 |
parents |
|
children |
7c04b4f675ec |
rev |
line source |
1432
|
1 FROM bang6:5000/base_x86
|
|
2
|
|
3 RUN pip install grpcio==1.22.0
|
|
4
|
|
5 WORKDIR /opt
|
|
6
|
|
7 COPY requirements.txt ./
|
|
8 RUN egrep -v ws281 requirements.txt > requirements_x86_ok.txt
|
|
9
|
|
10 RUN pip install --index-url https://projects.bigasterisk.com/ --extra-index-url https://pypi.org/simple -r requirements_x86_ok.txt
|
|
11
|
|
12 RUN pip install pytype
|
|
13
|
|
14 COPY *.py ./
|
|
15 COPY config/ ./config/
|