Initial commit

This commit is contained in:
Yaser
2026-08-13 20:26:04 +03:30
commit 056fa76514
1923 changed files with 113766 additions and 0 deletions

14
Dockerfile.deps Normal file
View 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