Skip to content

Commit 5a91c63

Browse files
fix: git comit install format (#221)
* fix: git comit install format * fix: var dockerfile
1 parent 523736a commit 5a91c63

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

annotators/fact_retrieval/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ENV PORT=$PORT
1818
COPY ./annotators/fact_retrieval/requirements.txt /src/requirements.txt
1919
RUN pip install --upgrade pip && pip install -r /src/requirements.txt
2020

21-
RUN pip install git+https://github.com/deeppavlov/DeepPavlov.git@${COMMIT}
21+
RUN pip install https://codeload.github.com/deeppavlov/DeepPavlov/tar.gz/${COMMIT}
2222

2323
COPY $SRC_DIR /src
2424

annotators/intent_catcher_deepy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ COPY ./requirements.txt requirements.txt
1818

1919
RUN pip install --upgrade pip && \
2020
pip install -r requirements.txt && \
21-
pip install git+git://github.com/deeppavlov/DeepPavlov.git@dbcaf73acd8580e2bec337300ab0d29887d78c51
21+
pip install https://codeload.github.com/deeppavlov/DeepPavlov/tar.gz/dbcaf73acd8580e2bec337300ab0d29887d78c51
2222

2323
RUN python -c "import tensorflow_hub as hub; hub.Module(\"https://tfhub.dev/google/universal-sentence-encoder/2\")" && \
2424
wget -O /usr/local/lib/python3.6/dist-packages/deeppavlov/utils/server/server.py \

annotators/kbqa/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ENV COMMIT=$COMMIT
1515
COPY ./annotators/kbqa/requirements.txt /src/requirements.txt
1616
RUN pip install --upgrade pip && pip install -r /src/requirements.txt
1717

18-
RUN pip install git+https://github.com/deeppavlov/DeepPavlov.git@$COMMIT
18+
RUN pip install https://codeload.github.com/deeppavlov/DeepPavlov/tar.gz/${COMMIT}
1919

2020
COPY $SRC_DIR /src
2121

annotators/spelling_preprocessing_ru/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ENV PORT=$PORT
2525
COPY ./annotators/spelling_preprocessing_ru/requirements.txt /src/requirements.txt
2626
RUN pip install --upgrade pip && pip install -r /src/requirements.txt
2727

28-
RUN pip install git+https://github.com/deeppavlov/DeepPavlov.git@${COMMIT}
28+
RUN pip install https://codeload.github.com/deeppavlov/DeepPavlov/tar.gz/${COMMIT}
2929

3030
COPY $SRC_DIR /src
3131

services/text_qa/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ COPY ./requirements.txt /src/requirements.txt
1919
RUN pip install --upgrade pip && pip install -r /src/requirements.txt
2020

2121
RUN rm -r /etc/apt/sources.list.d && apt-get update && apt-get install git -y
22-
RUN pip install git+https://github.com/deeppavlov/DeepPavlov.git@${COMMIT}
22+
RUN pip install https://codeload.github.com/deeppavlov/DeepPavlov/tar.gz/${COMMIT}
2323

2424
COPY . /src
2525

0 commit comments

Comments
 (0)