mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
14 lines
296 B
Text
14 lines
296 B
Text
|
FROM node:13.12.0-alpine as build
|
||
|
WORKDIR /app
|
||
|
ENV PATH /app/node_modules/.bin:$PATH
|
||
|
COPY package*.json ./
|
||
|
RUN yarn install
|
||
|
COPY . ./
|
||
|
RUN yarn build
|
||
|
|
||
|
# production environment
|
||
|
FROM nginx:stable-alpine
|
||
|
COPY --from=build /app/build /usr/share/nginx/html
|
||
|
EXPOSE 80
|
||
|
CMD ["nginx", "-g", "daemon off;"]
|