✨ complete model integration
This commit is contained in:
17
build.Dockerfile
Normal file
17
build.Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
||||
FROM node:22.12.0 as build
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package*.json ./
|
||||
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN npm run build
|
||||
|
||||
FROM nginx:alpine
|
||||
|
||||
COPY --from=build /app/dist /usr/share/nginx/html
|
||||
|
||||
EXPOSE 80
|
||||
Reference in New Issue
Block a user