Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
amcgovern
/
OMol25DSF
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
OMol25DSF
/
Dockerfile
amcgovern
Create Dockerfile
e1668a1
verified
24 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
183 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]