Skip to content

Commit

Permalink
Fix Poetry install for dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
praseodym committed Feb 19, 2025
1 parent 7feffb4 commit 756225b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ ENV PYTHONUNBUFFERED 1

RUN pip3 install poetry
RUN poetry config virtualenvs.create false
RUN poetry install
RUN poetry install --with dev
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN export DEBIAN_FRONTEND="noninteractive" && \
rm -rf /tmp/* /var/lib/apt/lists/*

RUN poetry config virtualenvs.create false
RUN poetry install --no-root --no-dev
RUN poetry install --no-root
RUN set -a && . ./ci.env && python manage.py collectstatic --noinput --no-post-process

RUN groupadd -r dienst2 --gid=999 && useradd --no-log-init -r -g dienst2 --uid=999 dienst2
Expand Down

0 comments on commit 756225b

Please sign in to comment.