Files
dealplustech-newastro/Dockerfile
Kunthawat Greethong 0346bb797b Add core project configs
2026-04-17 19:35:59 +07:00

15 lines
345 B
Docker

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"]