Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
ikechan8370/cp-extra
eggacheb
/
cp-extra
like
0
Runtime error
App
Files
Files
Community
1f31dbb
cp-extra
/
Dockerfile
ikechan8370
fix: Dockerfile
bbe8174
over 1 year ago
raw
Copy download link
history
blame
193 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
. /code
CMD
[
"python"
,
"/code/main.py"
]