feat: migrate AI to llama and use local db
All checks were successful
Deploy / lint-build-deploy (push) Successful in 2m13s

This commit is contained in:
2026-01-19 21:25:38 +01:00
parent 6e75be19ed
commit a8d3bf1b3b
10 changed files with 12059 additions and 980 deletions

View File

@@ -4,12 +4,20 @@ WORKDIR /app
COPY package*.json ./
RUN yarn
RUN npm install
COPY . .
RUN yarn build
ARG NEXT_PUBLIC_BRAND_NAME
ARG NEXT_PUBLIC_BRAND_EMAIL
ARG NEXT_PUBLIC_BRAND_COUNTRY
ENV NEXT_PUBLIC_BRAND_NAME=$NEXT_PUBLIC_BRAND_NAME
ENV NEXT_PUBLIC_BRAND_EMAIL=$NEXT_PUBLIC_BRAND_EMAIL
ENV NEXT_PUBLIC_BRAND_COUNTRY=$NEXT_PUBLIC_BRAND_COUNTRY
RUN npm run build
EXPOSE 3000
CMD [ "yarn", "start" ]
CMD [ "npm", "start" ]