Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kohlin
/
nlp-project
like
0
Configuration error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c2beb97
nlp-project
/
Dockerfile
kohlin
Initial Commit
978a5b4
3 months ago
raw
Copy download link
history
blame
Safe
Wrap lines
141 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]