standardnotes-server/Dockerfile

43 lines
1.1 KiB
Text
Raw Normal View History

2023-02-03 10:26:06 +00:00
FROM node:18.13.0-alpine
ENV NODE_ENV production
2023-02-06 12:35:58 +00:00
RUN apk add --update --no-cache \
openssl \
curl \
bash \
py3-pip
2023-02-03 10:26:06 +00:00
RUN pip install --no-cache-dir --upgrade supervisor
RUN mkdir -p /var/lib/server/logs
COPY docker/supervisord.conf /etc/supervisord.conf
COPY docker/docker-entrypoint.sh /usr/local/bin/
COPY . /opt/server
WORKDIR /opt/server
2023-02-06 12:35:58 +00:00
RUN corepack enable
2023-02-03 10:26:06 +00:00
RUN yarn install --immutable
2023-02-06 14:08:03 +00:00
RUN CI=true yarn build
2023-02-03 10:26:06 +00:00
2023-02-09 09:23:10 +00:00
RUN mkdir -p \
/opt/bundled/syncing-server \
/opt/bundled/auth \
/opt/bundled/files \
/opt/bundled/revisions \
/opt/bundled/api-gateway
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
2023-02-06 14:08:03 +00:00
ENTRYPOINT ["docker-entrypoint.sh"]