fixed some bugs, added dockerfile for running on windows. output files must be extracted manually.

This commit is contained in:
Tom Zuidberg
2026-06-22 17:27:42 +02:00
parent b96e5f7e38
commit 8e0d2842af
4 changed files with 119 additions and 78 deletions

11
code/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.14-slim
WORKDIR /app
COPY ./main.py /app
COPY ./simulator.py /app
COPY ./requirements.txt /app
RUN pip install -r requirements.txt
CMD ["python", "main.py"]