push
This commit is contained in:
Executable
+16
@@ -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"]
|
||||
Reference in New Issue
Block a user