Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
HMPhuoc
/
toxic
like
0
Running
App
Files
Files
Community
541fd71
toxic
/
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"
]