fix: ensure start.sh is correctly copied into the Docker image in Dockerfile

This commit is contained in:
Manuel Weiser 2024-09-05 09:39:32 +02:00
parent 6755f1ddf9
commit e277542a9d

View File

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