annotate service/dpms/Dockerfile.pi @ 1462:2b29f14eb6bd

try new graph+view widget Ignore-this: d5f9c5dc52f04324368716ba2f604fdb darcs-hash:44e85a5c075ef73c34a58deaa3a3c1e8390dae52
author drewp <drewp@bigasterisk.com>
date Sun, 24 Nov 2019 00:01:00 -0800
parents afd19bf8b499
children d6996175ea78
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1188
afd19bf8b499 various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
diff changeset
1 FROM bang6:5000/base_pi
afd19bf8b499 various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
diff changeset
2 RUN apt-get install -y x11-xserver-utils
afd19bf8b499 various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
diff changeset
3
afd19bf8b499 various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
diff changeset
4 COPY requirements.txt ./
afd19bf8b499 various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
diff changeset
5 RUN pip install -r requirements.txt
afd19bf8b499 various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
diff changeset
6
afd19bf8b499 various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
diff changeset
7 ADD https://projects.bigasterisk.com/rdfdb/more.tgz ./
afd19bf8b499 various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
diff changeset
8 RUN tar xvzf more.tgz
afd19bf8b499 various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
diff changeset
9
afd19bf8b499 various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
diff changeset
10 COPY *.py ./
afd19bf8b499 various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
diff changeset
11
afd19bf8b499 various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
diff changeset
12 EXPOSE 9095
afd19bf8b499 various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
diff changeset
13
afd19bf8b499 various docker setups and build fixes
drewp <drewp@bigasterisk.com>
parents:
diff changeset
14 CMD [ "python", "./dpms_service.py" ]