mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
06e8c2a601
Bumps node from 15.10.0-alpine to 15.11.0-alpine. Signed-off-by: dependabot[bot] <support@github.com>
24 lines
415 B
Docker
24 lines
415 B
Docker
FROM node:15.11.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
|
|
COPY yarn.lock /app/yarn.lock
|
|
|
|
RUN yarn
|
|
|
|
RUN yarn global add @vue/cli
|
|
|
|
COPY . /app
|
|
RUN yarn build
|
|
|
|
FROM nginx:1.19.7-alpine
|
|
COPY --from=ui-builder /app/dist /etc/nginx/html
|
|
COPY --from=ui-builder /app/nginx.conf /etc/nginx/nginx.conf
|
|
EXPOSE 80
|
|
CMD ["nginx"]
|