Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
exbert-project
/
exbert
like
126
Running
on
CPU Upgrade
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
d0fe9c5
exbert
/
Dockerfile
julien-c
HF staff
one more try
d0fe9c5
verified
over 1 year 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"
]