From 7f0fccf196a2d9cfb567e91d9524c9a20e7f89d8 Mon Sep 17 00:00:00 2001 From: Edward Gao Date: Tue, 25 Oct 2022 14:28:27 -0700 Subject: [PATCH] fix dockerfile --- airbyte-integrations/connectors/destination-s3/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/destination-s3/Dockerfile b/airbyte-integrations/connectors/destination-s3/Dockerfile index dfeadf59c0cb..eb28aa69ba80 100644 --- a/airbyte-integrations/connectors/destination-s3/Dockerfile +++ b/airbyte-integrations/connectors/destination-s3/Dockerfile @@ -22,8 +22,8 @@ RUN /bin/bash -c 'set -e && \ yum install lzop lzo lzo-dev -y; \ elif [ "$ARCH" == "aarch64" ] || [ "$ARCH" = "arm64" ]; then \ echo "$ARCH" && \ - yum group install -y "Development Tools" \ - yum install lzop lzo lzo-dev wget curl unzip zip maven git -y; \ + yum group install -y "Development Tools"; \ + yum install lzop lzo lzo-dev wget curl unzip zip maven git which -y; \ wget http://www.oberhumer.com/opensource/lzo/download/lzo-2.10.tar.gz -P /tmp; \ cd /tmp && tar xvfz lzo-2.10.tar.gz; \ cd /tmp/lzo-2.10/ && ./configure --enable-shared --prefix /usr/local/lzo-2.10; \