Update Dockerfile

This commit is contained in:
Simon Zeyer 2019-04-29 09:43:16 +02:00 committed by GitHub
parent 257c132c14
commit 4caf9c923c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,8 @@ RUN apk add --update --no-cache ca-certificates gcc g++ curl openblas-dev@commun
RUN ln -s /usr/include/locale.h /usr/include/xlocale.h RUN ln -s /usr/include/locale.h /usr/include/xlocale.h
WORKDIR /usr/src/LEDServer WORKDIR /usr/src/LEDServer
RUN pip3 install --no-cache-dir numpy scipy RUN pip3 install --no-cache-dir numpy
# RUN pip3 install --no-cache-dir scipy # scipy is only required by the recorder application
COPY . /usr/src/LEDServer COPY . /usr/src/LEDServer
CMD python3.7 -u /usr/src/LEDServer/LEDServer.py CMD python3.7 -u /usr/src/LEDServer/LEDServer.py