jdk21-builder/Containerfile

9 lines
248 B
Text
Raw Permalink Normal View History

2025-08-11 11:43:02 +02:00
# Podman for running in container pre-installed
# See https://www.redhat.com/en/blog/podman-inside-container
2025-08-11 11:38:34 +02:00
FROM quay.io/podman/stable
2024-06-18 10:53:44 +02:00
2024-06-18 13:11:38 +02:00
RUN dnf install -y java-21-openjdk-headless nodejs python \
2025-08-11 11:38:34 +02:00
gcc gcc-c++ git graphviz ruby
2024-06-18 10:53:44 +02:00
CMD ["/bin/bash"]