Files
Shahoo/Dockerfile.deps
2026-08-13 20:26:04 +03:30

15 lines
346 B
Docker

# 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