chore: upgrade node version (#835)

* chore: upgrade node version

* chore: upgrade yarn

* fix: yarn setup:

* remove bundle plugin

* fix bundling

* fix env path for files
This commit is contained in:
Karol Sójko
2023-09-18 13:32:49 +02:00
committed by GitHub
parent de2e167582
commit c2cbf44594
2812 changed files with 3958 additions and 5758 deletions

View File

@@ -1,4 +1,4 @@
FROM node:20.2.0-alpine
FROM node:20.6.1-alpine
ENV NODE_ENV production
@@ -26,22 +26,6 @@ RUN yarn install --immutable
RUN CI=true yarn build
RUN mkdir -p \
/opt/bundled/syncing-server \
/opt/bundled/auth \
/opt/bundled/files \
/opt/bundled/revisions \
/opt/bundled/api-gateway \
/opt/shared/uploads
RUN yarn workspace @standardnotes/syncing-server bundle --no-compress --output-directory /opt/bundled/syncing-server
RUN yarn workspace @standardnotes/auth-server bundle --no-compress --output-directory /opt/bundled/auth
RUN yarn workspace @standardnotes/files-server bundle --no-compress --output-directory /opt/bundled/files
RUN yarn workspace @standardnotes/revisions-server bundle --no-compress --output-directory /opt/bundled/revisions
RUN yarn workspace @standardnotes/api-gateway bundle --no-compress --output-directory /opt/bundled/api-gateway
WORKDIR /opt/bundled
RUN rm -rf /opt/server
RUN mkdir -p /opt/shared/uploads
ENTRYPOINT ["docker-entrypoint.sh"]