Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Game4all
/
reqroup
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
reqroup
/
Dockerfile
Lucas ARRIESSE
Initial commit
41c1aed
8 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
128 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
. .
EXPOSE
8000
RUN
pip3 install -r requirements.txt
ENTRYPOINT
[
"python"
,
"app.py"
]