mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-21 07:33:51 +00:00
Add production-ready docker file
This commit is contained in:
parent
0e2be93a3d
commit
3fab329080
1
.dockerignore
Normal file
1
.dockerignore
Normal file
|
@ -0,0 +1 @@
|
|||
node_modules/*
|
21
Dockerfile
Normal file
21
Dockerfile
Normal file
|
@ -0,0 +1,21 @@
|
|||
FROM node:14.2.0-alpine as ui-builder
|
||||
|
||||
RUN mkdir /app
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# ENV PATH /usr/src/app/node_modules/.bin:$PATH
|
||||
|
||||
COPY package.json /app/package.json
|
||||
|
||||
RUN npm install
|
||||
|
||||
RUN npm install -g @vue/cli
|
||||
|
||||
COPY . /app
|
||||
RUN npm run build
|
||||
|
||||
FROM nginx:alpine
|
||||
COPY --from=ui-builder /app/dist /usr/share/nginx/html
|
||||
EXPOSE 80
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
Loading…
Reference in New Issue
Block a user