Dockerize inliner command

This commit is contained in:
Jan Dittberner 2019-06-27 00:13:57 +02:00
parent c50489ff8d
commit b9872ed624
2 changed files with 13 additions and 1 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM node:10
RUN npm install inliner
ENTRYPOINT /node_modules/.bin/inliner
ADD *.png /
ADD *.css /

View File

@ -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