Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rr1
/
pasl
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
80821a3
pasl
/
Dockerfile
rr1
Create Dockerfile
80821a3
verified
about 1 month 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"
]