correction in npm version on dockerfile.dev (#5615)

* correction in npm version on dockerfile.dev

* removed extra enable tooljet db
This commit is contained in:
Adish M 2023-02-24 11:16:18 +05:30 committed by GitHub
parent de0830b776
commit 8e30a6a937
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -58,7 +58,7 @@ SENTRY_DEBUG=
COMMENT_FEATURE_ENABLE=
ENABLE_MULTIPLAYER_EDITING=true
ENABLE_MARKETPLACE_FEATURE=
ENABLE_TOOLJET_DB=
# SSO (Applicable only for Multi-Workspace)
SSO_GOOGLE_OAUTH2_CLIENT_ID=

View file

@ -3,7 +3,7 @@ FROM node:18.3.0-buster
ENV NODE_ENV=development
RUN npm i -g npm@7.20.0
RUN npm i -g npm@8.11.0
# set working directory
WORKDIR /app

View file

@ -1,7 +1,7 @@
# pull official base image
FROM node:18.3.0-buster
RUN npm i -g npm@7.20.0
RUN npm i -g npm@8.11.0
# set working directory
WORKDIR /app

View file

@ -13,7 +13,7 @@ WORKDIR /
ENV NODE_ENV=development
ENV NODE_OPTIONS="--max-old-space-size=4096"
RUN npm i -g npm@7.20.0
RUN npm i -g npm@8.11.0
RUN mkdir -p /app
WORKDIR /app