9 lines
195 B
Docker
9 lines
195 B
Docker
FROM python:3.11
|
|
|
|
WORKDIR /aero
|
|
COPY . .
|
|
RUN curl -sSL https://install.python-poetry.org -o install-poetry.py
|
|
RUN python3 install-poetry.py
|
|
ENV PATH="${PATH}:/root/.local/bin"
|
|
RUN poetry install
|