-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (16 loc) · 830 Bytes
/
Makefile
File metadata and controls
25 lines (16 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
###--LINT--#############################################################################################################
format:
black ./src/ && ruff --fix ./src/iucom/
lint:
black --check ./src/ && ruff ./src/iucom && mypy --install-types --non-interactive ./src/iucom/
########################################################################################################################
###--DOCKER--###########################################################################################################
build:
docker build -t smthngslv/iucom:latest -f docker/Dockerfile .
push:
docker push smthngslv/iucom:latest
pull:
docker pull smthngslv/iucom:latest
prune:
docker system prune -f
########################################################################################################################