Skip to content

Commit

Permalink
fix: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
jaydeepsingh25 committed Nov 19, 2023
1 parent 8e1e9e1 commit 889d4bb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion preprocessors/caption-recognition/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ COPY --chown=python:python . $HOME/app
COPY /preprocessors/caption-recognition/requirements.txt /app/requirements.txt

RUN pip3 install --upgrade pip
RUN pip install -r /app/requirements.txt
RUN pip3 install -r /app/requirements.txt


COPY /schemas /app/schemas
Expand Down
2 changes: 1 addition & 1 deletion preprocessors/clothes-detector/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN apt-get install -y p7zip \
zip \
unzip
RUN pip3 install --upgrade pip
RUN pip install -r /app/requirements.txt
RUN pip3 install -r /app/requirements.txt
RUN wget https://image.a11y.mcgill.ca/models/clothesDetector/yolo.zip
RUN unzip yolo.zip

Expand Down
2 changes: 1 addition & 1 deletion preprocessors/content-categoriser/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WORKDIR /app
ENV PATH="/home/python/.local/bin:${PATH}"

RUN pip3 install --upgrade pip
RUN pip install -r /app/requirements.txt
RUN pip3 install -r /app/requirements.txt

COPY /schemas /app/schemas
COPY /preprocessors/content-categoriser/ /app
Expand Down
4 changes: 2 additions & 2 deletions preprocessors/grouping/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ RUN adduser --disabled-password python
WORKDIR /app
ENV PATH="/home/python/.local/bin:${PATH}"

RUN pip install --upgrade pip
RUN pip3 install --upgrade pip

COPY /preprocessors/grouping/requirements.txt /app/requirements.txt
RUN pip install -r requirements.txt
RUN pip3 install -r requirements.txt

COPY /schemas /app/schemas

Expand Down
4 changes: 2 additions & 2 deletions preprocessors/sorting/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ RUN adduser --disabled-password python
WORKDIR /app
ENV PATH="/home/python/.local/bin:${PATH}"

RUN pip install --upgrade pip
RUN pip3 install --upgrade pip

COPY /preprocessors/sorting/requirements.txt /app/requirements.txt
RUN pip install -r requirements.txt
RUN pip3 install -r requirements.txt

COPY /schemas /app/schemas

Expand Down

0 comments on commit 889d4bb

Please sign in to comment.