Sha256: 24bacd1d714805c0fd0eb8bc19c16d0855db2f6796a1907368eb1040951592bc
Contents?: true
Size: 512 Bytes
Versions: 20
Compression:
Stored size: 512 Bytes
Contents
# Install node modules <% if using_puppeteer? -%> ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD="true" <% end -%> COPY <%=sources.join(' ') %> . <% if sources.join.include? 'yarn' -%> <% if options.cache? -%> RUN --mount=type=cache,id=bld-yarn-cache,target=/root/.yarn \ YARN_CACHE_FOLDER=/root/.yarn yarn install <% else -%> RUN yarn install <% end -%> <% else -%> <% if options.cache? -%> RUN --mount=type=cache,id=bld-npm-cache,target=/root/.npm \ npm install <% else -%> RUN npm install <% end -%> <% end -%>
Version data entries
20 entries across 20 versions & 1 rubygems