saiteja-coder's picture
Update Dockerfile
c9a3261 verified
raw
history blame contribute delete
256 Bytes
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Copy all files
COPY . /app
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose port (important for Hugging Face)
EXPOSE 7860
# Run app
CMD ["python", "app.py"]