Mercurial > code > home > repos > homeauto
view service/arduinoNode/Dockerfile @ 1164:1fe67fedf5ac
move speech_music into docker and into pygame
Ignore-this: 15260aecbf7fddb75e641b7a853b0281
darcs-hash:de903a34368d5a71f8b0712de3885e2d91c4df5d
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Sun, 09 Sep 2018 04:00:09 -0700 |
parents | 8b4eda2cf0bd |
children | 8f5a16a55f64 |
line wrap: on
line source
FROM alpine:3.7 WORKDIR /opt RUN apk add --no-cache gcc build-base jpeg-dev lapack-dev libffi-dev linux-headers musl-dev openssl-dev py2-cffi py2-numpy py2-numpy-f2py py2-pip python2 python2-dev indent COPY requirements.txt ./ RUN pip download --cache-dir /tmp/pip-cache -r requirements.txt RUN pip install --cache-dir /tmp/pip-cache -r requirements.txt COPY *.py ./ COPY static/ ./static/ ADD https://projects.bigasterisk.com/rdfdb/more.tgz ./ RUN tar xvzf more.tgz EXPOSE 9059 CMD [ "python", "./arduinoNode.py" ]