Skip to content

Commit

Permalink
install wheel>0.38 in docker containers
Browse files Browse the repository at this point in the history
  • Loading branch information
m-vdb committed Jan 19, 2023
1 parent aa2ccf1 commit 636fa56
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ WORKDIR /build
# install dependencies
RUN python -m venv /opt/venv && \
. /opt/venv/bin/activate && \
pip install --no-cache-dir -U "pip==22.*" && \
pip install --no-cache-dir -U "pip==22.*" -U "wheel>0.38.0" && \
poetry install --no-dev --no-root --no-interaction && \
poetry build -f wheel -n && \
pip install --no-deps dist/*.whl && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.full
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ WORKDIR /build
# install dependencies
RUN python -m venv /opt/venv && \
. /opt/venv/bin/activate && \
pip install --no-cache-dir -U "pip==22.*"
pip install --no-cache-dir -U "pip==22.*" -U "wheel>0.38.0"
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
2 changes: 1 addition & 1 deletion docker/Dockerfile.pretrained_embeddings_mitie_en
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ WORKDIR /build

# install dependencies
RUN python -m venv /opt/venv && \
. /opt/venv/bin/activate && pip install --no-cache-dir -U "pip==22.*"
. /opt/venv/bin/activate && pip install --no-cache-dir -U "pip==22.*" -U "wheel>0.38.0"
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
2 changes: 1 addition & 1 deletion docker/Dockerfile.pretrained_embeddings_spacy_de
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ WORKDIR /build

# install dependencies
RUN python -m venv /opt/venv && \
. /opt/venv/bin/activate && pip install --no-cache-dir -U "pip==22.*"
. /opt/venv/bin/activate && pip install --no-cache-dir -U "pip==22.*" -U "wheel>0.38.0"
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
2 changes: 1 addition & 1 deletion docker/Dockerfile.pretrained_embeddings_spacy_en
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ WORKDIR /build

# install dependencies
RUN python -m venv /opt/venv && \
. /opt/venv/bin/activate && pip install --no-cache-dir -U "pip==22.*"
. /opt/venv/bin/activate && pip install --no-cache-dir -U "pip==22.*" -U "wheel>0.38.0"
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
2 changes: 1 addition & 1 deletion docker/Dockerfile.pretrained_embeddings_spacy_it
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ WORKDIR /build

# install dependencies
RUN python -m venv /opt/venv && \
. /opt/venv/bin/activate && pip install --no-cache-dir -U "pip==22.*"
. /opt/venv/bin/activate && pip install --no-cache-dir -U "pip==22.*" -U "wheel>0.38.0"
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 636fa56

Please sign in to comment.