15 lines
285 B
YAML
15 lines
285 B
YAML
default:
|
|
image: docker:28.5.1-dind
|
|
services:
|
|
- "docker:28.5.1-dind"
|
|
variables:
|
|
DOCKER_TLS_CERTDIR: "/certs"
|
|
IMAGE_NAME: "ci.virintox.com/spfn/splatie"
|
|
IMAGE_TAG: "${CI_COMMIT_REF_SLUG}"
|
|
stages:
|
|
- build
|
|
build:
|
|
stage: build
|
|
script:
|
|
- docker build .
|
|
stage: push
|