Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
lewiskimaru/helloworld
kamau1
/
sematranslator
like
1
Running
App
Files
Files
Community
6c2f3c3
sematranslator
/
Dockerfile
kamau1
Update Dockerfile
b7dcec1
verified
10 months ago
raw
Copy download link
history
blame
Safe
177 Bytes
FROM
python:
3.10
.
9
COPY
. .
WORKDIR
/
RUN
pip install --no-cache-dir --upgrade -r /requirements.txt
CMD
[
"uvicorn"
,
"modules.app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]