mirror of
https://github.com/Luzifer/gmail-manage.git
synced 2024-11-08 15:30:10 +00:00
9 lines
211 B
Makefile
9 lines
211 B
Makefile
|
default:
|
||
|
|
||
|
build:
|
||
|
docker run --rm -i \
|
||
|
-v "$(CURDIR):$(CURDIR)" \
|
||
|
-w "$(CURDIR)" \
|
||
|
node:10-alpine \
|
||
|
sh -exc "npm ci && npm run build && rm -rf node_modules && chown $(shell id -u):$(shell id -g) app.js"
|