fune/taskcluster/docker/index-task/Dockerfile
Dustin J. Mitchell 2e0a18921c Bug 1513732 - upgrade index-task docker image r=bstack
Differential Revision: https://phabricator.services.mozilla.com/D16600

--HG--
extra : moz-landing-system : lando
2019-01-15 23:37:36 +00:00

11 lines
276 B
Docker

FROM node:10-alpine
ENV NODE_ENV production
RUN mkdir /app
ADD insert-indexes.js /app/
ADD package.json /app/
ADD yarn.lock /app/
WORKDIR /app
RUN yarn --frozen-lockfile && yarn cache clean
ENTRYPOINT ["node"]