diff --git a/Dockerfile b/Dockerfile index a4dbdea6e3..6123f7758a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,7 @@ WORKDIR /app EXPOSE 3000 35729 COPY . /app -RUN yarn install && yarn build +RUN npm install && \ + npm run build -CMD ["yarn", "serve"] +CMD ["npm", "run", "serve"]