AQI_Predictor_Qamar / Dockerfile
github-actions[bot]
Automated backend deployment for 2026-07-06
8009d6e
Raw
History Blame Contribute Delete
253 Bytes
FROM python:3.9-slim
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . /code/
EXPOSE 7860
CMD ["uvicorn", "api.index:app", "--host", "0.0.0.0", "--port", "7860"]