Skip to content
Snippets Groups Projects
Unverified Commit ad207bd0 authored by Maxime FRIESS's avatar Maxime FRIESS :blue_heart:
Browse files

[ci] Build and push podman image

parent 4bf84644
Branches
No related merge requests found
Pipeline #69143 passed with stages
in 6 minutes and 3 seconds
......@@ -16,6 +16,17 @@ composer:
- vendor/
- .env
podman:
stage: build
image:
name: quay.io/podman/stable
variables:
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
script:
- podman login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- podman build -t $IMAGE_TAG .
- podman push $IMAGE_TAG
codestyle:
stage: test
dependencies: []
......
FROM php:8.1-fpm
FROM docker.io/php:8.1-fpm
# Add composer.lock and composer.json into the working directory
ADD composer.lock composer.json /seb/
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment