Make sure public is created before docker is run or else it will be owned by root
parent
8727594413
commit
8ccc426618
5
Makefile
5
Makefile
|
@ -17,7 +17,10 @@ image: .jsimage
|
||||||
src/node_modules:
|
src/node_modules:
|
||||||
mkdir -p $@
|
mkdir -p $@
|
||||||
|
|
||||||
src/yarn.lock: src/node_modules src/package.json
|
public:
|
||||||
|
mkdir -p $@
|
||||||
|
|
||||||
|
src/yarn.lock: public src/node_modules src/package.json
|
||||||
$(YARN)
|
$(YARN)
|
||||||
@touch -mr $(shell ls -Atd $? | head -1) $@
|
@touch -mr $(shell ls -Atd $? | head -1) $@
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue