Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
ikechan8370/cp-extra
eggacheb
/
cp-extra
like
0
Runtime error
App
Files
Files
Community
0abb626
cp-extra
/
Dockerfile
ikechan8370
Add application file
0abb626
over 1 year ago
raw
Copy download link
history
blame
Safe
176 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
python main.py