Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
HMPhuoc/toxic
HMPhuoc
/
toxic_test
like
0
Sleeping
App
Files
Files
Community
4de9537
toxic_test
/
Dockerfile
HMPhuoc
First commit
22ad7f3
8 months ago
raw
Copy download link
history
blame
Safe
208 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
[
"gunicorn"
,
"-b"
,
"0.0.0.0:7860"
,
"main:app"
]