Merge remote-tracking branch 'upstream/master'

This commit is contained in:
vaunblu 2024-10-22 09:48:09 -07:00
commit 4641efb350
564 changed files with 7301 additions and 3437 deletions

View file

@ -12,8 +12,8 @@ RUN yarn install --frozen-lockfile
FROM node:18-alpine AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY docker/middleware.js .
COPY . .
COPY docker/middleware.js ./src
ARG DATABASE_TYPE
ARG BASE_PATH
@ -53,6 +53,7 @@ USER nextjs
EXPOSE 3000
ENV HOSTNAME 0.0.0.0
ENV PORT 3000
CMD ["yarn", "start-docker"]