Skip to content

Commit d658448

Browse files
committed
Upgrade rclone to 1.72.0 in alibi-detect-server image
1 parent 57cdb12 commit d658448

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

components/alibi-detect-server/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ RUN microdnf update -y && \
2323
gcc-c++
2424

2525
# Install Rclone Binary to be present in the image
26-
RUN wget https://downloads.rclone.org/v1.71.2/rclone-v1.71.2-linux-amd64.zip && \
27-
unzip rclone-v1.71.2-linux-amd64.zip && \
28-
mv rclone-v1.71.2-linux-amd64/rclone /usr/bin/rclone && \
29-
rm -rf rclone-v1.71.2-linux-amd64.zip rclone-v1.71.2-linux-amd64
26+
RUN wget https://downloads.rclone.org/v1.72.0/rclone-v1.72.0-linux-amd64.zip && \
27+
unzip rclone-v1.72.0-linux-amd64.zip && \
28+
mv rclone-v1.72.0-linux-amd64/rclone /usr/bin/rclone && \
29+
rm -rf rclone-v1.72.0-linux-amd64.zip rclone-v1.72.0-linux-amd64
3030

3131
# Make home dir
3232
RUN mkdir microservice

components/alibi-detect-server/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dev_install: get_local_repo
2424

2525
.PHONY: type_check
2626
type_check:
27-
mypy --ignore-missing-imports adserver
27+
poetry run mypy --ignore-missing-imports adserver
2828

2929
.PHONY: test
3030
test: type_check

0 commit comments

Comments
 (0)