Initial commit
This commit is contained in:
13
proxy-ui-app/Dockerfile
Normal file
13
proxy-ui-app/Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
# этап сборки (build stage)
|
||||
FROM node:lts-alpine as build-stage
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
COPY . .
|
||||
RUN npm run build
|
||||
|
||||
# этап production (production-stage)
|
||||
FROM nginx:stable-alpine as production-stage
|
||||
COPY --from=build-stage /app/dist /usr/share/nginx/html
|
||||
EXPOSE 80
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
Reference in New Issue
Block a user