Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
om1chael
/
Pygame-story
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3b3cf7e
Pygame-story
/
Dockerfile
om1chael
messag
3b3cf7e
about 2 years ago
raw
Copy download link
history
blame
226 Bytes
FROM
python:
3.9
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"/code/app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]