-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into Feat/SearchWithLabelsInQuestions
- Loading branch information
Showing
60 changed files
with
1,052 additions
and
693 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
/.pnp | ||
.pnp.js | ||
.yarn/install-state.gz | ||
bun.lockb | ||
|
||
# docker volume | ||
/postgres-data/ | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
legacy-peer-deps = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,31 @@ | ||
FROM node:20-alpine | ||
ARG DATABASE_URL | ||
FROM node:20-alpine AS build | ||
|
||
WORKDIR /usr/src/app | ||
ARG DATABASE_URL | ||
|
||
COPY . . | ||
|
||
RUN npm install | ||
RUN DATABASE_URL=$DATABASE_URL npx prisma generate | ||
RUN DATABASE_URL=$DATABASE_URL npm run build | ||
RUN npm install -g pnpm && \ | ||
pnpm install && \ | ||
pnpm add sharp && \ | ||
pnpm run build && \ | ||
DATABASE_URL=$DATABASE_URL pnpm dlx prisma generate | ||
|
||
EXPOSE 3000 | ||
|
||
CMD ["npm", "run", "start"] | ||
|
||
FROM node:20-alpine AS run | ||
|
||
RUN mkdir /.npm && chown -R 1001:1001 /.npm | ||
|
||
USER 1001:1001 | ||
WORKDIR /usr/src/app | ||
|
||
COPY --from=build --chown=1001:1001 usr/src/app/.next/standalone ./ | ||
COPY --from=build --chown=1001:1001 usr/src/app/.next/static ./.next/static | ||
COPY --from=build --chown=1001:1001 usr/src/app/public ./public | ||
|
||
ENV NODE_ENV production | ||
ENV PORT 3000 | ||
ENV HOSTNAME "0.0.0.0" | ||
|
||
CMD [ "node", "server.js" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.