added docker

This commit is contained in:
CHIEFSOFT\ameye
2024-06-14 17:40:37 -04:00
parent e2319135be
commit d0a1b8f420
5 changed files with 69 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# FROM node:erbium
# pull the base image
# FROM node:alpine
FROM node:18-alpine
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
# RUN npm run build
# CMD [ "npm", "run", "preview" ]
CMD [ "npm", "run", "dev" ,"--", "--host"]