finished v1.0
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
#stage 1
|
||||
FROM node:18-slim as node
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
RUN npm install
|
||||
RUN npm run build:ssr --omit=dev
|
||||
#stage 2
|
||||
FROM node:18-slim
|
||||
COPY --from=node /app/dist /app/dist
|
||||
WORKDIR /app
|
||||
CMD ["node", "dist/Portfolio/server/main.js"]
|
||||
Reference in New Issue
Block a user