sales / frontend /Dockerfile
Corin1998's picture
Create Dockerfile
4af582a verified
raw
history blame contribute delete
161 Bytes
FROM node:20-slim
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install
COPY . .
EXPOSE 5173
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]