13 lines
254 B
Docker
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"]
|