annotate service/piNode/Dockerfile.check @ 633:42dab8c6200a
RgbStrip init fix
Ignore-this: 2fe82ee432152e2902cc1d81d0895341
author |
drewp@bigasterisk.com |
date |
Mon, 12 Aug 2019 01:10:12 -0700 |
parents |
981bcedeedcd |
children |
7c04b4f675ec |
rev |
line source |
629
|
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/
|