Spaces:
Runtime error
Runtime error
File size: 1,925 Bytes
41af422 d7e9f2b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# build front-end
FROM node:lts-alpine AS frontend
RUN npm install pnpm -g
WORKDIR /app
COPY ./package.json /app
COPY ./pnpm-lock.yaml /app
RUN pnpm install
COPY . /app
RUN pnpm run build
# build backend
FROM node:lts-alpine as backend
RUN npm install pnpm -g
WORKDIR /app
COPY /service/package.json /app
COPY /service/pnpm-lock.yaml /app
RUN pnpm install
COPY /service /app
RUN pnpm build
# service
FROM node:lts-alpine
RUN npm install pnpm -g
WORKDIR /app
COPY /service/package.json /app
COPY /service/pnpm-lock.yaml /app
RUN pnpm install --production && rm -rf /root/.npm /root/.pnpm-store /usr/local/share/.cache /tmp/*
COPY /service /app
COPY --from=frontend /app/replace-title.sh /app
RUN chmod +x /app/replace-title.sh
COPY --from=frontend /app/dist /app/public
COPY --from=backend /app/build /app/build
COPY --from=backend /app/src/utils/templates /app/build/templates
EXPOSE 3002
RUN --mount=type=secret,id=AUTH_SECRET_KEY,mode=0444,required=true
RUN --mount=type=secret,id=API_REVERSE_PROXY,mode=0444,required=true
RUN --mount=type=secret,id=OPENAI_ACCESS_TOKEN,mode=0444,required=true
RUN --mount=type=secret,id=MONGODB_URL,mode=0444,required=true
RUN --mount=type=secret,id=OPENAI_API_MODEL,mode=0444,required=true
RUN --mount=type=secret,id=PASSWORD_MD5_SALT,mode=0444,required=true
RUN --mount=type=secret,id=REGISTER_ENABLED,mode=0444,required=true
RUN --mount=type=secret,id=ROOT_USER,mode=0444,required=true
RUN --mount=type=secret,id=SITE_DOMAIN,mode=0444,required=true
RUN --mount=type=secret,id=SITE_TITLE,mode=0444,required=true
RUN --mount=type=secret,id=SMTP_HOST,mode=0444,required=true
RUN --mount=type=secret,id=SMTP_PASSWORD,mode=0444,required=true
RUN --mount=type=secret,id=SMTP_PORT,mode=0444,required=true
RUN --mount=type=secret,id=SMTP_TSL,mode=0444,required=true
RUN --mount=type=secret,id=SMTP_USERNAME,mode=0444,required=true
CMD ["sh", "-c", "pnpm run prod"] |