N4SM / frontend /Dockerfile
gaialive's picture
Upload 20 files
d591eb1 verified
raw
history blame contribute delete
123 Bytes
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 5173
CMD ["npm", "run", "dev"]