Initial commit
This commit is contained in:
9
view/Dockerfile
Normal file
9
view/Dockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
FROM node:20 AS build
|
||||
|
||||
WORKDIR .
|
||||
|
||||
COPY . ./
|
||||
RUN npm install && npm run build
|
||||
|
||||
FROM nginx:1.27.0-alpine
|
||||
COPY --from=build /build /usr/share/nginx/html
|
||||
Reference in New Issue
Block a user