Skip to content

Commit

Permalink
Merge pull request #35 from Global-Solutions/bump/node-8.9.1
Browse files Browse the repository at this point in the history
Bump/node 8.9.1
  • Loading branch information
masakij authored Nov 8, 2017
2 parents 36d5ddc + 3de4755 commit 52630f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions dev-debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:8.9.0
FROM node:8.9.1
MAINTAINER Global Solutions co., ltd.
LABEL version="1.2.0"
LABEL version="1.2.1"

ENV NODE_USER=node
WORKDIR "/home/${NODE_USER}/app"
Expand Down
8 changes: 3 additions & 5 deletions dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:8.9.0-alpine
FROM node:8.9.1-alpine
MAINTAINER Global Solutions co., ltd.
LABEL version="2.2.0"
LABEL version="2.2.1"

ENV GLIBC_VERSION=2.26-r0
ENV NODE_USER=node
Expand All @@ -10,13 +10,11 @@ WORKDIR "/home/${NODE_USER}/app"
# findutils for xargs and find
# glibc for flow
RUN chown ${NODE_USER}:${NODE_USER} .. -R && \
deps="git ca-certificates patch findutils" && \
deps="git ca-certificates patch findutils wget" && \
apk add --no-cache $deps && \
apk --no-cache add --virtual .build-deps wget && \
wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://raw.githubusercontent.com/sgerrand/alpine-pkg-glibc/master/sgerrand.rsa.pub && \
wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/${GLIBC_VERSION}/glibc-${GLIBC_VERSION}.apk && \
apk add glibc-${GLIBC_VERSION}.apk && \
apk del .build-deps && \
rm -rf /var/lib/apt/lists/* glibc-${GLIBC_VERSION}.apk /etc/apk/keys/sgerrand.rsa.pub

USER ${NODE_USER}
Expand Down

0 comments on commit 52630f5

Please sign in to comment.