awacke1's picture
Create Dockerfile
b849899 verified
raw
history blame
289 Bytes
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"]