mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
* chore: upgrade node version * chore: upgrade yarn * fix: yarn setup: * remove bundle plugin * fix bundling * fix env path for files
18 lines
284 B
Docker
18 lines
284 B
Docker
FROM node:20.6.1-alpine
|
|
|
|
RUN apk add --update \
|
|
curl \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
ENV NODE_ENV production
|
|
|
|
RUN corepack enable
|
|
|
|
COPY ./ /workspace
|
|
|
|
WORKDIR /workspace/packages/analytics
|
|
|
|
ENTRYPOINT [ "/workspace/packages/analytics/docker/entrypoint.sh" ]
|
|
|
|
CMD [ "start-worker" ]
|