Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
zxciop/mSnake
Match01
/
mSnake
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f8a4443
mSnake
/
Dockerfile
zxciop
Update Dockerfile
929bb61
verified
11 months ago
raw
Copy download link
history
blame
Safe
149 Bytes
FROM
python:
3.10
-slim
WORKDIR
/code
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]