create-dr/Dockerfile
Shrikanth Upadhayaya b953c700bf
Initialize
2024-09-17 12:12:32 -04:00

13 lines
254 B
Docker

FROM python:3.11-slim
RUN apt-get update && apt-get install -y \
git \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt /requirements.txt
COPY entrypoint.py /entrypoint.py
RUN pip install -r requirements.txt
ENTRYPOINT ["/entrypoint.py"]