Files
Srinadh kesineni fa769db2d4 docker updated
2025-05-12 21:44:26 +05:30

14 lines
281 B
Docker

FROM python:3.10-slim
# update packages, install git and remove cache
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENTRYPOINT ["python", "main.py"]