site-mariage/Dockerfile.dev
Corentin Joguet bff653acd6 first commit
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-15 10:30:37 +02:00

11 lines
201 B
Text

# Dev container : Astro en mode hot-reload, monte le source en volume
FROM node:22-alpine
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install
EXPOSE 4321
CMD ["npm", "run", "dev"]