FROM buildkite/puppeteer:latest RUN mkdir /app WORKDIR /app COPY package.json ./ RUN npm install ENV PATH="${PATH}:/app/node_modules/.bin" COPY . .