first commit
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
# FROM node:erbium
|
||||
# pull the base image
|
||||
# FROM node:alpine
|
||||
FROM node:22-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json .
|
||||
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
|
||||
#RUN npm run build
|
||||
|
||||
|
||||
# CMD [ "npm", "run", "preview" ]
|
||||
CMD [ "npm", "run", "start" ,"--", "--host"]
|
||||
|
||||
Reference in New Issue
Block a user