Add graphviz and ruby.

This commit is contained in:
Michael Lipp 2024-06-18 13:11:38 +02:00
parent e739ef12e9
commit 581347b9e2
2 changed files with 10 additions and 2 deletions

View file

@ -2,7 +2,7 @@ image: quay.io/podman/stable
stages:
- build
- push
- publish
variables:
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
@ -12,6 +12,13 @@ before_script:
build:
stage: build
script:
- podman build .
publish:
stage: publish
variables:
GIT_STRATEGY: none
script:
- podman build -t $IMAGE_TAG .
- podman push $IMAGE_TAG

View file

@ -1,5 +1,6 @@
FROM docker.io/fedora:40
RUN dnf install -y java-21-openjdk-headless nodejs python gcc gcc-c++ git podman
RUN dnf install -y java-21-openjdk-headless nodejs python \
gcc gcc-c++ git podman graphviz ruby
CMD ["/bin/bash"]