0ebb8a21a1
Clean Up Testing and Linting * somescriptcleanup * mostgolangci * deplatest * imageversions * usingscratch * movedqueuefrtesting * finishedunittesting * linting * taskfilecontext
16 lines
220 B
YAML
16 lines
220 B
YAML
---
|
|
# https://taskfile.dev
|
|
|
|
version: '3'
|
|
|
|
vars:
|
|
DOCKERFILE: "build/Dockerfile"
|
|
|
|
tasks:
|
|
lint:
|
|
cmds:
|
|
- godolint {{.DOCKERFILE}}
|
|
build:
|
|
cmds:
|
|
- docker build -t {{.IMAGE_NAME}} -f {{.DOCKERFILE}} .
|