Compare commits

..

No commits in common. "578da8cb62f6f2304077d7576ab8f64eb347de22" and "cf2c6b61e289c4b4e47e3db9bad528eaaf2a0fcc" have entirely different histories.

3 changed files with 2 additions and 6 deletions

View File

@ -5,14 +5,12 @@ COPY frontend/package.json frontend/yarn.lock ./
RUN yarn install --pure-lockfile
COPY frontend .
RUN yarn build
RUN yarn export
FROM node:20.15.1-alpine
WORKDIR /app
COPY backend/package.json backend/yarn.lock ./
RUN yarn install --pure-lockfile
COPY --from=builder /app/out /app/public
COPY backend .
COPY --from=builder /app/build /app/public
CMD ["yarn", "start"]

File diff suppressed because one or more lines are too long

View File

@ -4,8 +4,6 @@
"dev": "cross-env PORT=${FRONT_PORT:-3000} next dev --turbopack",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "next lint",
"format": "prettier '{components,pages,src,interfaces,hooks}/**/*.{tsx,ts,js}' --write"
},