FROM python:3.10-slim WORKDIR /app COPY . /app COPY credentials.json /app/credentials.json RUN pip install -r requirements.txt EXPOSE 7860 CMD ["python", "app.py"]