mirror of
https://github.com/olehomelchenko/Mini-VLAT-ua.git
synced 2025-12-21 21:22:22 +00:00
prepare production dockerfiles and env
This commit is contained in:
14
ReactTool/frontend/Dockerfile.prod
Normal file
14
ReactTool/frontend/Dockerfile.prod
Normal file
@@ -0,0 +1,14 @@
|
||||
# ReactTool/frontend/Dockerfile.prod
|
||||
FROM node:16 as build
|
||||
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
COPY yarn.lock ./
|
||||
|
||||
RUN yarn install
|
||||
|
||||
COPY . .
|
||||
RUN yarn build
|
||||
|
||||
FROM nginx:alpine
|
||||
COPY --from=build /app/build /usr/share/nginx/html
|
||||
Reference in New Issue
Block a user