Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 2 additions & 15 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ RUN dnf update -y && \
ruby \
ruby-devel \
libffi-devel \
libatomic && \
libatomic \
valgrind && \
pip3 install \
python-dateutil \
subprocess32 \
Expand All @@ -44,20 +45,6 @@ RUN dnf update -y && \
chown -R joshua:joshua /var/joshua && \
rm -rf /tmp/*

# valgrind

RUN curl -Ls --retry 5 --fail https://sourceware.org/pub/valgrind/valgrind-3.20.0.tar.bz2 -o valgrind.tar.bz2 && \
echo "8536c031dbe078d342f121fa881a9ecd205cb5a78e639005ad570011bdb9f3c6 valgrind.tar.bz2" > valgrind-sha.txt && \
sha256sum -c valgrind-sha.txt && \
mkdir valgrind && \
tar --strip-components 1 --no-same-owner --no-same-permissions --directory valgrind -xjf valgrind.tar.bz2 && \
cd valgrind && \
./configure --enable-only64bit --enable-lto && \
make && \
make install && \
cd .. && \
rm -rf /tmp/*

# Install Joshua client
COPY childsubreaper/ /opt/joshua/install/childsubreaper
COPY joshua/ /opt/joshua/install/joshua
Expand Down
1 change: 1 addition & 0 deletions k8s/agent-scaler/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ RUN dnf -y update && \
yum-utils && \
dnf -y install \
gettext \
jq-1.6 \
python3-pip && \
dnf -y clean all --enablerepo='*' && \
case $(uname -m) in \
Expand Down