AQI_Predictor_Qamar / Dockerfile
github-actions[bot]
Automated backend deployment for 2026-04-05
23bb02f
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"]