Astro 6.1.7 simple test

This commit is contained in:
Kunthawat Greethong
2026-04-28 11:12:25 +07:00
commit 111238ae9f
5 changed files with 62 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:22-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 4321
CMD ["npm", "run", "dev"]