Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
nullHawk
/
approve-me
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
33e04c8
approve-me
/
Dockerfile
nullHawk
add: Dockerfile
779e44b
verified
20 days ago
raw
Copy download link
history
blame
Safe
139 Bytes
FROM
python:
3.9
-slim
WORKDIR
/code
COPY
. /code
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]