stato / Dockerfile
shashwatIDR's picture
Create Dockerfile
797a48d verified
raw
history blame contribute delete
216 Bytes
FROM python:3.10-slim
# Set workdir
WORKDIR /app
# Copy files
COPY app.py /app
# Install dependencies
RUN pip install flask requests
# Expose port for HF Space
EXPOSE 7860
# Run the app
CMD ["python", "app.py"]