This commit is contained in:
nitowa
2022-04-09 14:37:20 +02:00
commit 0086c95dc0
21 changed files with 5836 additions and 0 deletions
Executable
+16
View File
@@ -0,0 +1,16 @@
FROM node:lts
RUN apt-get update && apt-get install -y libnss3 libnspr4 libatk1.0-0 libatk-bridge2.0-0 libcups2 libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 libgbm1 libasound2
WORKDIR /problem
ADD .yarnrc.yml .
ADD .yarn ./.yarn/
ADD package.json .
ADD yarn.lock .
RUN yarn
ADD . .
RUN yarn build
CMD ["yarn", "start"]