Spaces:
Building
Building
FROM python:3.9 | |
# Set the working directory in the container | |
WORKDIR /app | |
# Copy the app.py script to the working directory | |
COPY app.py . | |
# Install the required dependencies | |
RUN pip install pyglet arcade pygame | |
# Run the app.py script when the container starts | |
CMD ["python", "app.py"] |