atomaka.com/Makefile
Andrew Tomaka 7af2b851fa
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
Remove deploy make stuff
2023-02-18 14:43:20 -05:00

18 lines
317 B
Makefile

build:
bundle exec jekyll build
docker build . -t atomaka.com
review:
docker exec -it atomaka.com sh
clean:
rm -r _site/
docker rm -f atomaka.com
test: clean build
docker run \
--name atomaka.com \
--publish 80:80 \
--env "DOMAIN=$$DOMAIN" \
--env "REDIRECT_DOMAIN=$$REDIRECT_DOMAIN" \
atomaka.com