File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ### Fixed
6
+
7
+ - Precompile v8 cache while building Docker image ([ #148 ] ( https://github.com/marp-team/marp-cli/pull/148 ) )
8
+
5
9
## v0.13.1 - 2019-09-10
6
10
7
11
### Added
Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ ENV IS_DOCKER true
28
28
WORKDIR /home/marp/.cli
29
29
COPY --chown=marp:marp . /home/marp/.cli/
30
30
RUN yarn install && yarn add puppeteer-core@chrome-$(chromium-browser --version | sed -r 's/^Chromium ([0-9]+).+$/\1 /' ) \
31
- && yarn build && rm -rf ./src ./node_modules && yarn install --production && yarn cache clean
31
+ && yarn build && rm -rf ./src ./node_modules && yarn install --production && yarn cache clean \
32
+ && node /home/marp/.cli/marp-cli.js --version
32
33
33
34
WORKDIR /home/marp/app
34
35
ENTRYPOINT ["node" , "/home/marp/.cli/marp-cli.js" ]
You can’t perform that action at this time.
0 commit comments