Skip to content

Commit

Permalink
Change test plugins path
Browse files Browse the repository at this point in the history
  • Loading branch information
asteriscos committed Nov 27, 2024
1 parent 0b23885 commit ece58fb
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/test-packages/osd-test-packages.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@ FROM opensearchproject/opensearch-dashboards:${OSD_VERSION}

ARG PACKAGE_NAME

ADD ./plugins /tmp/
ADD ./plugins /tmp/plugins/
# This is needed to run it local

RUN mkdir /tmp/unziped
USER root
RUN yum update -y && yum install -y unzip
RUN ls -la /tmp
RUN for plugin in $(ls /tmp); do \
RUN for plugin in $(ls /tmp/plugins); do \
echo $plugin; \
unzip /tmp/$plugin -d /tmp/unziped/; \
unzip /tmp/plugins/$plugin -d /tmp/unziped/; \
done
# RUN rm /tmp/${PACKAGE_NAME}
# echo $plugins
Expand Down

0 comments on commit ece58fb

Please sign in to comment.