Add graphviz and ruby.
This commit is contained in:
parent
e739ef12e9
commit
581347b9e2
2 changed files with 10 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ image: quay.io/podman/stable
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- build
|
- build
|
||||||
- push
|
- publish
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
|
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
|
||||||
|
|
@ -12,6 +12,13 @@ before_script:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
stage: build
|
stage: build
|
||||||
|
script:
|
||||||
|
- podman build .
|
||||||
|
|
||||||
|
publish:
|
||||||
|
stage: publish
|
||||||
|
variables:
|
||||||
|
GIT_STRATEGY: none
|
||||||
script:
|
script:
|
||||||
- podman build -t $IMAGE_TAG .
|
- podman build -t $IMAGE_TAG .
|
||||||
- podman push $IMAGE_TAG
|
- podman push $IMAGE_TAG
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
FROM docker.io/fedora:40
|
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"]
|
CMD ["/bin/bash"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue