Files
astro-tina/Dockerfile
Kunthawat Greethong 111238ae9f Astro 6.1.7 simple test
2026-04-28 11:12:25 +07:00

12 lines
122 B
Docker

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