12 lines
163 B
Docker
12 lines
163 B
Docker
FROM python:3.12-slim
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
WORKDIR /app
|
|
|
|
COPY src/ /app/
|
|
|
|
ENTRYPOINT ["python","main.py"]
|