Created
July 24, 2025 07:55
-
-
Save odra/99dc7645a5b10e8ff0c29092a069f7e7 to your computer and use it in GitHub Desktop.
bazel podman
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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