mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
6d9ba0683c
chore: update node.js to v8.11.4
16 lines
420 B
Docker
16 lines
420 B
Docker
FROM node:8.11.4-alpine@sha256:cf4ea9156ef964eaf0c4df65da3f4fed7358dbe31149ca105c7684a5858195d8
|
|
|
|
LABEL maintainer="Rhys Arkins <rhys@arkins.net>"
|
|
LABEL name="renovate"
|
|
|
|
WORKDIR /usr/src/app/
|
|
|
|
RUN apk add --quiet --no-cache git openssh-client
|
|
COPY package.json .
|
|
COPY yarn.lock .
|
|
RUN yarn install --production && yarn cache clean
|
|
COPY lib lib
|
|
USER node
|
|
|
|
ENTRYPOINT ["node", "/usr/src/app/lib/renovate.js"]
|
|
CMD ["--help"]
|