Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
economies-open-ai
/
open-model-evolution
like
12
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
b466419
open-model-evolution
/
Dockerfile
emsesc
add dockerfile
cef5b3d
4 months ago
raw
Copy download link
history
blame
200 Bytes
FROM
python:
3.11
-slim-bookworm
WORKDIR
/app
COPY
requirements.txt /app/
RUN
pip install -r requirements.txt --no-cache-dir
COPY
. /app
CMD
[
"gunicorn"
,
"app:server"
,
"run"
,
"--bind"
,
"0.0.0.0:80"
]