Files
query-orchestration/scripts/docker.yml
T

16 lines
220 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-07 13:25:11 +00:00
- godolint {{.DOCKERFILE}}
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}} .