mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
* feat: upgrade node to 20.0.0 * fix(auth): webauthn usage * fix: remove better-sqlite3 driver and unplug newrelic * fix: add sqlite3 lib to packages * chore: upgrade aws-sdk and localstack * fix: specs and node types * tmp: check if installing yarn helps linter and test cancellation issues * Revert "tmp: check if installing yarn helps linter and test cancellation issues" This reverts commiteacb4e28d1. * fix: run tests separately * tmp: downgrade yarn release * Revert "tmp: downgrade yarn release" This reverts commita277454dbe. * feat: upgrade to node 20.1.0 * Revert "fix: run tests separately" This reverts commit5755f2caf9.
18 lines
291 B
Docker
18 lines
291 B
Docker
FROM node:20.1.0-alpine
|
|
|
|
RUN apk add --update \
|
|
curl \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
ENV NODE_ENV production
|
|
|
|
RUN corepack enable
|
|
|
|
COPY ./ /workspace
|
|
|
|
WORKDIR /workspace/packages/syncing-server
|
|
|
|
ENTRYPOINT [ "/workspace/packages/syncing-server/docker/entrypoint.sh" ]
|
|
|
|
CMD [ "start-web" ]
|