mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
17 lines
433 B
Docker
17 lines
433 B
Docker
FROM node:8.10.0-alpine@sha256:a55d3e87802b2a8464b3bfc1f8c3c409f89e9b70a31f1dccce70bd146501f1a0
|
|
|
|
LABEL maintainer="Rhys Arkins <rhys@arkins.net>"
|
|
LABEL name="renovate"
|
|
|
|
WORKDIR /src
|
|
|
|
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
|
|
RUN chown -R node:node /src
|
|
USER node
|
|
|
|
ENTRYPOINT ["node", "/src/lib/renovate.js"]
|
|
CMD ["--help"]
|