Skip to content

Commit 22a553a

Browse files
author
Thierry RAMORASOAVINA
committed
Put a workaround to fetch the 0.0.14 version of the s3 driver from github
The release 0.0.14 of the s3 driver has a typo, the folder name is correct but the file has version 0.0.13
1 parent c84de3c commit 22a553a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packaging/docker/khiopspydev/Dockerfile.ubuntu

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ RUN true \
8383
# Get Linux distribution codename \
8484
&& if [ -f /etc/os-release ]; then . /etc/os-release; fi \
8585
&& wget -O khiops-gcs.deb https://github.com/KhiopsML/khiopsdriver-gcs/releases/download/${KHIOPS_GCS_DRIVER_REVISION}/khiops-driver-gcs_${KHIOPS_GCS_DRIVER_REVISION}-1-${VERSION_CODENAME}.amd64.deb \
86-
&& wget -O khiops-s3.deb https://github.com/KhiopsML/khiopsdriver-s3/releases/download/${KHIOPS_S3_DRIVER_REVISION}/khiops-driver-s3_${KHIOPS_S3_DRIVER_REVISION}-1-${VERSION_CODENAME}.amd64.deb \
86+
# A little typo in the artifact name for version 0.0.14 needs fixing that is why a hardcoded version is used here \
87+
&& wget -O khiops-s3.deb https://github.com/KhiopsML/khiopsdriver-s3/releases/download/${KHIOPS_S3_DRIVER_REVISION}/khiops-driver-s3_0.0.13-1-${VERSION_CODENAME}.amd64.deb \
8788
&& (dpkg -i --force-all khiops-gcs.deb khiops-s3.deb || true) \
8889
&& apt-get -f -y install \
8990
&& rm -f khiops-gcs.deb khiops-s3.deb \

0 commit comments

Comments
 (0)