Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Dockerfile
.vscode
.dockerignore
node_modules
npm-debug.log
Expand All @@ -11,4 +12,8 @@ jest.config.js
__tests__
.husky
cdk
buildspecs
buildspecs
get-runtime-dependencies.sh
local.sh
staging.sh
.eslintignore
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ RUN if [ ! -z "${DEPENDENCIES}" ]; then npm i $DEPENDENCIES; fi;
RUN node ./generate-plugins-index.js $DEPENDENCIES;
RUN npm run build
# RUN rm -rf ./src
RUN npm dedupe
RUN npm prune --production


Expand Down
Loading