Add missing docker config
This commit is contained in:
parent
bbf9d89bd8
commit
03beb29d7b
1 changed files with 7 additions and 0 deletions
|
@ -7,3 +7,10 @@ RUN mv /src/CC2531_station/epaper_station_websocket/ /app
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
|
|
||||||
|
ADD rootfs /
|
||||||
|
|
||||||
|
# Corrects permissions for s6 v3
|
||||||
|
RUN if [ -d /etc/cont-init.d ]; then chmod -R 755 /etc/cont-init.d; fi && \
|
||||||
|
if [ -d /etc/services.d ]; then chmod -R 755 /etc/services.d; fi && \
|
||||||
|
if [ -f /entrypoint.sh ]; then chmod 755 /entrypoint.sh; fi
|
||||||
|
|
Loading…
Reference in a new issue