Explorar el Código

install all extras in development container

Rodja Trappe hace 1 año
padre
commit
9b9314d155
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      development.dockerfile

+ 1 - 1
development.dockerfile

@@ -11,6 +11,6 @@ RUN curl -sSL https://install.python-poetry.org | python3 - && \
 WORKDIR /app
 
 COPY ./pyproject.toml ./poetry.lock* main.py ./
-RUN poetry install --no-root
+RUN poetry install --no-root --all-extras
 
 CMD python3 -m debugpy --listen 5678 main.py