7 lines
129 B
Docker
7 lines
129 B
Docker
FROM python:3.11-slim
|
|
|
|
RUN pip install poetry
|
|
RUN poetry config virtualenvs.create false
|
|
|
|
COPY . .
|
|
RUN poetry install --only main |