Modulo planilla v1
This commit is contained in:
10
ui/Dockerfile
Normal file
10
ui/Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
# planilla/ui/Dockerfile
|
||||
FROM node:18-alpine 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
|
||||
Reference in New Issue
Block a user