Spaces:
rr1
/
Sleeping

mwa / Dockerfile
ykl45's picture
Create Dockerfile
49364f4 verified
raw
history blame contribute delete
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"]