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: 17 additions & 0 deletions fedora44/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,23 @@ RUN dnf update -y \
&& dnf clean all \
&& rm -rf /var/cache/dnf

# install CEF
RUN mkdir -p /opt/cef \
&& cd /opt/cef \
&& curl -L https://cef-builds.spotifycdn.com/cef_binary_148.0.10%2Bg7ee53f5%2Bchromium-148.0.7778.218_linux64_minimal.tar.bz2 -o cef.tar.bz2 \
&& curl -L https://cef-builds.spotifycdn.com/cef_binary_148.0.10%2Bg7ee53f5%2Bchromium-148.0.7778.218_linux64_minimal.tar.bz2.sha1 -o cef.tar.bz2.sha1 \
&& [ "$(cat cef.tar.bz2.sha1)" = "$(sha1sum cef.tar.bz2 | awk '{print $1}')" ] \
&& tar xjf cef.tar.bz2 \
&& mv 'cef_binary_148.0.10+g7ee53f5+chromium-148.0.7778.218_linux64_minimal' cef_binary_148 \
&& cd cef_binary_148 \
&& mkdir build \
&& cd build \
&& cmake .. \
&& cmake --build . --target libcef_dll_wrapper -j4

# set shell variable for ROOT build
ENV CEF_ROOT=/opt/cef/cef_binary_148

# Install torch directly from pytorch.org to avoid pulling in CUDA
RUN mkdir -p /py-venv \
&& python3 -m venv /py-venv/ROOT-CI \
Expand Down
17 changes: 17 additions & 0 deletions opensuse16/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,23 @@ RUN zypper --gpg-auto-import-keys -n ref \
&& zypper -n clean -a \
&& rm -rf /var/cache/zypp

# install CEF
RUN mkdir -p /opt/cef \
&& cd /opt/cef \
&& curl -L https://cef-builds.spotifycdn.com/cef_binary_148.0.10%2Bg7ee53f5%2Bchromium-148.0.7778.218_linux64_minimal.tar.bz2 -o cef.tar.bz2 \
&& curl -L https://cef-builds.spotifycdn.com/cef_binary_148.0.10%2Bg7ee53f5%2Bchromium-148.0.7778.218_linux64_minimal.tar.bz2.sha1 -o cef.tar.bz2.sha1 \
&& [ "$(cat cef.tar.bz2.sha1)" = "$(sha1sum cef.tar.bz2 | awk '{print $1}')" ] \
&& tar xjf cef.tar.bz2 \
&& mv 'cef_binary_148.0.10+g7ee53f5+chromium-148.0.7778.218_linux64_minimal' cef_binary_148 \
&& cd cef_binary_148 \
&& mkdir build \
&& cd build \
&& cmake .. \
&& cmake --build . --target libcef_dll_wrapper -j4

# set shell variable for ROOT build
ENV CEF_ROOT=/opt/cef/cef_binary_148

# Install torch directly from pytorch.org to avoid pulling in CUDA
RUN mkdir -p /py-venv \
&& python3 -m venv /py-venv/ROOT-CI \
Expand Down
Loading