Add core project configs

This commit is contained in:
Kunthawat Greethong
2026-04-17 19:35:59 +07:00
commit 0346bb797b
7 changed files with 6379 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
FROM node:20-alpine AS runner
WORKDIR /app
COPY --from=builder /app/dist ./dist
COPY --from=builder /app/package*.json ./
COPY --from=builder /app/public ./public
EXPOSE 3004
CMD ["npx", "astro", "preview", "--port", "3004", "--host"]