devcontainer/Taskfile.yml
Adam Štrauch f963aea890
All checks were successful
Build and Push / build-and-push (push) Successful in 3m31s
Fix Taskfile
2025-10-24 16:58:53 +02:00

15 lines
271 B
YAML

# https://taskfile.dev
version: '3'
vars:
IMAGE: gitea.ceperka.net/cx/devcontainer:f43-latest
tasks:
build:
cmds:
- docker pull registry.fedoraproject.org/fedora-toolbox
- docker build -t {{ .IMAGE }} .
push:
cmds:
- docker push {{ .IMAGE }}