* embed assets for web with separate dockerfile * add artifact dockerfile * add artifacts upload to github release * fix statik params and add make for local builds * fix docker image name to match compose * fix typos
12 lines
340 B
Makefile
12 lines
340 B
Makefile
OS=linux
|
|
ARCH=amd64
|
|
|
|
bin:
|
|
docker build -f Dockerfile.artifacts -t remark42.bin .
|
|
docker run -d --name=remark42.bin remark42.bin
|
|
docker cp remark42.bin:/artifacts/remark42.$(OS)-$(ARCH) remark42
|
|
docker rm -f remark42.bin
|
|
|
|
docker:
|
|
docker build -t umputun/remark42 --build-arg SKIP_FRONTEND_TEST=true --build-arg SKIP_BACKEND_TEST=true .
|