Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
ykl45/dpinf
rr1
/
dpinf
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3d1cd49
dpinf
/
Dockerfile
ykl45
Create Dockerfile
49364f4
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
213 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
# Install dependencies
RUN
pip install flask requests
# Copy the application code
COPY
app.py .
# Expose the port
EXPOSE
7860
# Run the application
CMD
[
"python"
,
"app.py"
]