noaa/makefile
2024-05-31 21:05:02 +00:00

11 lines
172 B
Makefile

run: build
docker run --rm -ti --name noaa -e HOST_NAME=localhost -p 9021:9021 -p 4200:4200 noaa
build:
docker build -t noaa .
lint:
isort --profile=black .
black .