Skip to content

Commit

Permalink
Merge pull request #23 from stakater/add-roxctl-client
Browse files Browse the repository at this point in the history
add roxctl client
  • Loading branch information
rasheedamir authored Sep 7, 2023
2 parents e0f6df8 + 2bc4374 commit 0f09b7b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ ENV GLIBC_VERSION=2.30-r0 \
ARGOCD_VERSION=v2.1.5 \
HELM_VERSION=3.11.3 \
KUBECONFORM=v0.4.14 \
ROX_VERSION=3.70.2 \
HOME="/opt/root"\
JAVA_TOOL_OPTIONS="-Djava.net.preferIPv4Stack=true"

Expand Down Expand Up @@ -89,7 +90,7 @@ RUN for f in "/etc/passwd" "/projects"; do \
chmod -R g+rwX ${f}; \
done

# Install sonarqube scanner
# install sonarqube scanner
RUN wget https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.2.0.1873-linux.zip && \
unzip sonar-scanner-cli-4.2.0.1873-linux.zip && \
mv sonar-scanner-4.2.0.1873-linux /var/opt
Expand All @@ -113,9 +114,14 @@ RUN wget https://github.com/yannh/kubeconform/releases/download/$KUBECONFORM/kub

# install locust ( https://docs.locust.io/en/stable )
RUN pip3 install locust && \
locust --help && \
locust -V && \
echo "Installed locust"

# roxctl client
RUN curl -sL -o /usr/local/bin/roxctl https://mirror.openshift.com/pub/rhacs/assets/${ROX_VERSION}/bin/Linux/roxctl && \
chmod +x /usr/local/bin/roxctl && \
echo "🦜🦜🦜🦜🦜"

# install yarn
RUN npm install -g yarn

Expand Down

0 comments on commit 0f09b7b

Please sign in to comment.