Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
exbert-project/exbert
simon-clmtd
/
exbert
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d0fe9c5
exbert
/
Dockerfile
julien-c
HF staff
one more try
d0fe9c5
verified
almost 2 years ago
raw
Copy download link
history
blame
209 Bytes
FROM
python:
3.7
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. .
CMD
[
"python"
,
"server/main.py"
,
"--port"
,
"7860"
]