Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sanikolaev authored Feb 27, 2024
1 parent 60547ca commit ce934cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ RUN if [ "$TARGETPLATFORM" = "linux/arm64" ] ; then export ARCH="arm"; else expo
&& dpkg -i manticore-dev-repo.noarch.deb \
&& apt-key adv --fetch-keys 'https://repo.manticoresearch.com/GPG-KEY-manticore' && apt-get -y update && apt-get -y install manticore \
&& apt-get -y update \
&& echo $(apt-get -y download --print-uris manticore-columnar-lib | cut -d" " -f1 | cut -d "'" -f 2) > /mcl.url \
&& echo $(apt-get -y download --print-uris manticore-columnar-lib | cut -d" " -f1 | cut -d "'" -f 2) > /mcl_galera.url \
&& echo $(apt-get -y download --print-uris manticore-galera | cut -d" " -f1 | cut -d "'" -f 2) > /galera.url \
&& echo $(apt-get -y download --print-uris manticore-executor | cut -d" " -f1 | cut -d "'" -f 2) > /extra.url ;\
elif [ ! -z "$DAEMON_URL" ]; then \
Expand All @@ -88,7 +88,7 @@ RUN if [ "$TARGETPLATFORM" = "linux/arm64" ] ; then export ARCH="arm"; else expo
&& echo $DAEMON_URL | sed "s/_ARCH_/$ARCH/g" \
&& wget -q $(echo $DAEMON_URL | sed "s/_ARCH_/$ARCH/g") \
&& apt-get -y install ./manticore*deb \
&& echo $MCL_URL | sed "s/_ARCH_/$ARCH/g" > /mcl.url \
&& echo $MCL_URL | sed "s/_ARCH_/$ARCH/g" > /mcl_galera.url \
&& echo $GALERA_URL | sed "s/_ARCH_/$ARCH/g" > /galera.url \
&& echo $EXTRA_URL | sed "s/_ARCH_/$ARCH/g" > /extra.url \
&& rm *.deb ; \
Expand Down

0 comments on commit ce934cf

Please sign in to comment.