Initial commit
This commit is contained in:
14
Dockerfile.deps
Normal file
14
Dockerfile.deps
Normal file
@@ -0,0 +1,14 @@
|
||||
# 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
|
||||
Reference in New Issue
Block a user