first commit
This commit is contained in:
17
Dockerfile
Normal file
17
Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
||||
FROM node:20
|
||||
|
||||
WORKDIR /vaishnaviecommerce
|
||||
|
||||
|
||||
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN npm run build
|
||||
|
||||
|
||||
EXPOSE 5173
|
||||
|
||||
CMD [ "npm", "run","preview" ]
|
||||
Reference in New Issue
Block a user