Skip to content

Commit

Permalink
drop introduced poetry --version prints
Browse files Browse the repository at this point in the history
  • Loading branch information
wochinge committed Aug 25, 2021
1 parent 1a57886 commit f23984e
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ WORKDIR /build
# install dependencies
RUN python -m venv /opt/venv && \
. /opt/venv/bin/activate && \
poetry --version && \
poetry install --no-dev --no-root --no-interaction && \
poetry build -f wheel -n && \
pip install --no-deps dist/*.whl && \
Expand Down
1 change: 0 additions & 1 deletion docker/Dockerfile.full
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ WORKDIR /build
# install dependencies
RUN python -m venv /opt/venv && \
. /opt/venv/bin/activate
RUN poetry --version
RUN . /opt/venv/bin/activate && poetry install --extras full --no-dev --no-root --no-interaction
RUN . /opt/venv/bin/activate && make install-mitie && \
poetry build -f wheel -n && \
Expand Down
1 change: 0 additions & 1 deletion docker/Dockerfile.pretrained_embeddings_mitie_en
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ WORKDIR /build
# install dependencies
RUN python -m venv /opt/venv && \
. /opt/venv/bin/activate
RUN poetry --version
RUN . /opt/venv/bin/activate && poetry install --no-dev --no-root --no-interaction
RUN . /opt/venv/bin/activate && make install-mitie && \
poetry build -f wheel -n && \
Expand Down
1 change: 0 additions & 1 deletion docker/Dockerfile.pretrained_embeddings_spacy_de
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ WORKDIR /build
# install dependencies
RUN python -m venv /opt/venv && \
. /opt/venv/bin/activate
RUN poetry --version
RUN . /opt/venv/bin/activate && poetry install --extras spacy --no-dev --no-root --no-interaction
RUN . /opt/venv/bin/activate && poetry build -f wheel -n && \
pip install --no-deps dist/*.whl && \
Expand Down
1 change: 0 additions & 1 deletion docker/Dockerfile.pretrained_embeddings_spacy_en
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ WORKDIR /build
# install dependencies
RUN python -m venv /opt/venv && \
. /opt/venv/bin/activate
RUN poetry --version
RUN . /opt/venv/bin/activate && poetry install --extras spacy --no-dev --no-root --no-interaction
RUN . /opt/venv/bin/activate && poetry build -f wheel -n && \
pip install --no-deps dist/*.whl && \
Expand Down

0 comments on commit f23984e

Please sign in to comment.