Skip to content

Instantly share code, notes, and snippets.

@odra
Created July 24, 2025 07:55
Show Gist options
  • Save odra/99dc7645a5b10e8ff0c29092a069f7e7 to your computer and use it in GitHub Desktop.
Save odra/99dc7645a5b10e8ff0c29092a069f7e7 to your computer and use it in GitHub Desktop.
bazel podman
FROM quay.io/fedora/fedora:42
RUN dnf install -y \
curl \
unzip \
zip \
git \
java-21-openjdk \
gcc \
vim \
&& dnf clean all
RUN curl -Lo /usr/local/bin/bazel https://github.com/bazelbuild/bazelisk/releases/latest/download/bazelisk-linux-amd64 \
&& chmod +x /usr/local/bin/bazel
RUN bazel version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment