Errorpages/Makefile

13 lines
247 B
Makefile
Raw Normal View History

2023-11-24 22:42:14 +00:00
compile-web:
cd web && inliner page.html > ../index-inlined-minified.html
run:
go run .
docker-build:
docker build -t errorpages .
docker-run:
docker run -itd --rm -p 8000:8000 -e BIND="0.0.0.0" -e PORT="8000" --name errorpages errorpages