15 lines
234 B
Docker
15 lines
234 B
Docker
FROM python:3.11
|
|
|
|
RUN mkdir /app
|
|
COPY / /app
|
|
|
|
COPY pyproject.toml poetry.lock /app/
|
|
|
|
WORKDIR /app
|
|
|
|
ENV PYTHONPATH=${PYTHONPATH}:${PWD}
|
|
RUN pip install poetry
|
|
|
|
RUN poetry config virtualenvs.create false
|
|
RUN poetry install --only main
|
|
|