FROM node:18-alpine

WORKDIR /var/www/html

# Install dependencies jika perlu (opsional)
# RUN npm install

CMD ["npm", "run", "dev"]
