mirror of
https://github.com/QingWei-Li/notea.git
synced 2024-11-25 15:12:51 +03:00
615041a927
/debug: Added a /debug page that's only accessible if a fatal error in configuration has occurred. settings: The settings page now includes a debugging section with similar content to the debug page. This still needs styling but is otherwise OK.
34 lines
690 B
Docker
34 lines
690 B
Docker
# Stage 1: Building the code
|
|
FROM node:16-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json yarn.lock ./
|
|
|
|
RUN yarn install --frozen-lockfile
|
|
|
|
COPY . .
|
|
|
|
RUN yarn build
|
|
RUN yarn install --production --frozen-lockfile
|
|
|
|
|
|
# Stage 2: And then copy over node_modules, etc from that stage to the smaller base image
|
|
FROM node:16-alpine as production
|
|
|
|
WORKDIR /app
|
|
|
|
# COPY package.json next.config.js .env* ./
|
|
COPY --from=builder /app/public ./public
|
|
COPY --from=builder /app/.next ./.next
|
|
COPY --from=builder /app/node_modules ./node_modules
|
|
|
|
VOLUME /app/config
|
|
# VOLUME /app/data
|
|
|
|
ENV CONFIG_FILE=/app/config/notea.yml LOG_DIRECTORY=/app/logs
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["node_modules/.bin/next", "start"]
|