File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,13 @@ RUN set -x && \
11
11
apt-get update && \
12
12
apt-get install -y --no-install-recommends postgresql-client-9.6 && \
13
13
rm -rf /var/lib/apt/lists/* && \
14
+ # upgrade npm to 6.10
15
+
14
16
# install node-prune
15
17
npm i -g node-prune && npm cache clean --force && \
16
18
# setup github ssh key
17
19
mkdir -p /root/.ssh && \
18
- ssh-keyscan -H github.com >> ~ /.ssh/known_hosts && \
20
+ ssh-keyscan -H github.com >> /root /.ssh/known_hosts && \
19
21
# setup git credential helper
20
22
mkdir -p /root/git && \
21
23
git config --global credential.helper 'store --file /root/git/credentials'
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ RUN fc-cache -f -v && \
40
40
dpkg-reconfigure fontconfig
41
41
42
42
USER hackmd
43
- RUN npm install -g sequelize-cli
43
+ RUN npm install -g sequelize-cli
[email protected]
44
44
45
45
WORKDIR /home/$USER_NAME/app
46
46
You can’t perform that action at this time.
0 commit comments