Dockerize inliner command
This commit is contained in:
parent
c50489ff8d
commit
b9872ed624
2 changed files with 13 additions and 1 deletions
8
Dockerfile
Normal file
8
Dockerfile
Normal file
|
@ -0,0 +1,8 @@
|
|||
FROM node:10
|
||||
|
||||
RUN npm install inliner
|
||||
|
||||
ENTRYPOINT /node_modules/.bin/inliner
|
||||
|
||||
ADD *.png /
|
||||
ADD *.css /
|
6
Makefile
6
Makefile
|
@ -2,4 +2,8 @@ IMAGES=$(wildcard *.jpg *.png)
|
|||
CSSFILES=$(wildcard *.css)
|
||||
|
||||
index.min.html: index.html $(CSSFILES) $(IMAGES)
|
||||
inliner "$<" > "$@"
|
||||
docker build -t inliner:latest .
|
||||
docker run -i --rm inliner:latest <"$<" >"$@"
|
||||
|
||||
clean:
|
||||
rm -f index.min.html
|
||||
|
|
Loading…
Reference in a new issue