fixed some bugs, added dockerfile for running on windows. output files must be extracted manually.
This commit is contained in:
11
code/Dockerfile
Normal file
11
code/Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user