Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add roxctl client #23

Merged
merged 3 commits into from
Sep 7, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion 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.6.1 \
KUBECONFORM=v0.4.14 \
ROX_VERSION=3.63.0 \
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 @@ -116,6 +117,11 @@ RUN pip3 install locust && \
locust --help && \
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