-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
15 lines (10 loc) · 910 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
cli-frontend:
docker run -ti --rm -v $(shell realpath ./frontend):/app -w /app $(shell docker build --quiet --target build-env -f frontend/deployment/Dockerfile frontend) bash
cli-backend:
docker run -ti --rm -v $(shell realpath ./backend):/app -w /app $(shell docker build --quiet --target build-env -f backend/deployment/backend/Dockerfile backend) bash
elm-analyse:
docker run -ti --rm -v $(shell realpath ./frontend):/app -w /app $(shell docker build --quiet --target build-env -f frontend/deployment/Dockerfile frontend) elm-analyse
golangci-lint-backend:
docker run -ti --rm -v $(shell realpath ./backend):/app -w /app golangci/golangci-lint:v1.55.0-alpine golangci-lint run --modules-download-mode=readonly ./...
golangci-lint-notify:
docker run -ti --rm -v $(shell realpath ./notify):/app -w /app golangci/golangci-lint:v1.55.0-alpine golangci-lint run --modules-download-mode=readonly ./...