feat: finish easy maze

This commit is contained in:
2023-11-02 09:11:00 +08:00
parent 747b827ffc
commit 8c48770523
3 changed files with 10 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
FROM python:3.11
COPY easy_maze.py /app/
WORKDIR /app
CMD [ "python", "easy_maze.py" ]