* rts configurations for ast * update shared dependencies.json for shared ast module * feat: api for script to identifiers * fix: typo for identifiers * feat: api for multiple scripts to get identifiers * fix: rts config, apis for ast * fix: removed unnecessary changes for ast modules * fix: docker image for rts including ast shared module, rts file alias ref * fix: added comments in build.sh file Co-authored-by: Aman Agarwal <aman@appsmith.com>
12 lines
181 B
Docker
12 lines
181 B
Docker
FROM node:16.14.0
|
|
|
|
LABEL maintainer="tech@appsmith.com"
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json dist ./
|
|
|
|
EXPOSE 8091
|
|
|
|
CMD ["node", "--require", "source-map-support/register", "server.js"]
|