This commit is contained in:
alsaze
2025-11-26 16:14:00 +03:00
commit 70d6285ebf
23 changed files with 16776 additions and 0 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM node:22-alpine AS build
WORKDIR /app
RUN corepack enable
COPY package.json yarn.lock ./
RUN yarn install
COPY . .
RUN yarn build
FROM node:22-alpine
WORKDIR /app
COPY --from=build /app/.output/ ./
ENV PORT=80
ENV VITE_BASE_URL=http://localhost:3000
EXPOSE 80
CMD ["node", "/app/server/index.mjs"]