diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9eaa80f..649231c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 diff --git a/Containerfile b/Containerfile index 77f4561..7b827ab 100644 --- a/Containerfile +++ b/Containerfile @@ -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"]