mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
add docker
This commit is contained in:
parent
e6d1d2506d
commit
91283b277e
2 changed files with 19 additions and 0 deletions
6
.dockerignore
Normal file
6
.dockerignore
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
.git
|
||||||
|
node_modules
|
||||||
|
build
|
||||||
|
.env.local
|
||||||
|
.github
|
||||||
|
.vscode
|
13
dockerfile
Normal file
13
dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
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;"]
|
Loading…
Reference in a new issue