This commit is contained in:
2026-06-24 15:10:50 +02:00
commit a3e7512f95
212 changed files with 212927 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM node:16.13.1
WORKDIR /app
COPY package.json ./
RUN yarn set version berry
COPY .yarnrc.yml ./
RUN yarn install
COPY . .
CMD ["yarn", "start"]