dockerfile/examples/standardnotes/server/Dockerfile

34 lines
518 B
Docker
Raw Normal View History

2024-03-15 14:52:38 +08:00
FROM node:20.6.1-alpine
ENV NODE_ENV production
RUN apk add --update --no-cache \
g++ \
make \
openssl \
curl \
bash \
py3-pip
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
RUN corepack enable
RUN yarn install --immutable
RUN CI=true yarn build
RUN mkdir -p /opt/shared/uploads
ENTRYPOINT ["docker-entrypoint.sh"]