# syntax=docker/dockerfile:1.4 # Heavy layer: yarn install. Rebuild when yarn.lock changes: # docker build -f Dockerfile.deps -t custom/shahoo-deps:1 . FROM node:18-alpine WORKDIR /home/node COPY package.json yarn.lock ./ ENV CYPRESS_INSTALL_BINARY=0 USER node RUN yarn install --frozen-lockfile --network-timeout 600000 --non-interactive