fix: set executable permission for start.sh in Dockerfile

This commit is contained in:
Manuel Weiser 2024-09-05 09:51:06 +02:00
parent 5031ebf4b2
commit 0e826dd42f

View File

@ -7,6 +7,7 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY game_collection .
COPY start.sh .
RUN chmod +x start.sh
EXPOSE 3004