Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
extractor/target/
runtime-samples/**/target/
# If you prefer the allow list template instead of the deny list, see community template:
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
Expand Down Expand Up @@ -32,7 +34,6 @@ out-*/
.svn
# ignore Maven generated target folders
~
target
# ignore downloaded maven
/tools/maven
/tools/maven.zip
Expand Down
2 changes: 1 addition & 1 deletion Containerfile-extractor
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM registry.ci.openshift.org/ocp/4.22:base-rhel9 AS rust-builder
ARG TARGETARCH

RUN dnf update -y && \
dnf -y install gcc make wget rust-toolset rustfmt && \
dnf -y install gcc make wget rust-toolset rustfmt openssl-devel perl && \
dnf clean all && \
rm -rf /var/cache/dnf/*
WORKDIR /workspace/extractor
Expand Down
2 changes: 1 addition & 1 deletion Containerfile-rust-dev
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ENV PATH="${HOME}/.cargo/bin:${HOME}/.local/bin:${PATH}"

RUN chgrp root /opt/app-root/src/insights-runtime-extractor && \
chmod g+w /opt/app-root/src/insights-runtime-extractor && \
dnf install -y gcc make rust-toolset rustfmt
dnf install -y gcc make rust-toolset rustfmt openssl-devel

RUN find $HOME/. -type d -exec chmod 777 {} \; && \
find $HOME/. -type f -exec chmod ugo+rw {} \;
Expand Down
Loading