Files
query-orchestration/scripts/docker.yml
T

16 lines
228 B
YAML
Raw Normal View History

2025-01-10 11:12:03 +00:00
---
2024-12-19 11:38:57 +00:00
# https://taskfile.dev
version: '3'
vars:
2025-01-10 11:12:03 +00:00
DOCKERFILE: "build/Dockerfile"
2024-12-19 11:38:57 +00:00
tasks:
lint:
cmds:
2025-01-10 12:58:14 +00:00
- hadolint {{.DOCKERFILE}} -t none
2024-12-19 11:38:57 +00:00
build:
cmds:
2025-01-10 11:12:03 +00:00
- docker build -t {{.IMAGE_NAME}} -f {{.DOCKERFILE}} .