--- # https://taskfile.dev version: "3" vars: DOCKERFILE: "build/Dockerfile" tasks: lint: cmds: - hadolint {{.DOCKERFILE}} -t none build: run: once cmds: - docker build -t {{.IMAGE_NAME}} -f {{.DOCKERFILE}} .