Add missing docker config

This commit is contained in:
Jan-Henrik 2023-02-06 22:18:24 +01:00
parent bbf9d89bd8
commit 03beb29d7b

View file

@ -7,3 +7,10 @@ RUN mv /src/CC2531_station/epaper_station_websocket/ /app
WORKDIR /app
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