diff options
author | Martin Ashby <martin@ashbysoft.com> | 2018-05-17 20:27:50 +0000 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2018-05-17 20:27:50 +0000 |
commit | a54ba2ee83320d1ec6f3e43bcd79afe165095c7f (patch) | |
tree | 8a74e50231d74428b8beb2de90eef978f1fd9754 /Dockerfile | |
parent | 3aaf918e40ad68c97e542bc596f630b58991ff66 (diff) | |
download | unicornpaint-a54ba2ee83320d1ec6f3e43bcd79afe165095c7f.tar.gz unicornpaint-a54ba2ee83320d1ec6f3e43bcd79afe165095c7f.tar.bz2 unicornpaint-a54ba2ee83320d1ec6f3e43bcd79afe165095c7f.tar.xz unicornpaint-a54ba2ee83320d1ec6f3e43bcd79afe165095c7f.zip |
Added missing numpy
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,6 @@ -FROM python +FROM python:latest RUN pip install unicornhathd Flask Flask-Sockets +RUN pip install numpy COPY build/ . COPY server.py . -ENTRYPOINT python server.py
\ No newline at end of file +ENTRYPOINT python server.py |