Skip to content

Commit

Permalink
Merge pull request #910 from gregsheremeta/docker_fix_index_hbs
Browse files Browse the repository at this point in the history
update Dockerfile to use new index.hbs instead of index.html (ovirt-web-ui-1.4 backport)
  • Loading branch information
gregsheremeta authored Jan 8, 2019
2 parents a0b71d6 + f09ab06 commit b1c42c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ FROM node:8

RUN apt-get update -qq && apt-get install -qy libelf1

RUN mkdir -p /web-ui
COPY index.html package.json LICENSE yarn.lock .flowconfig /web-ui/
RUN mkdir -p /web-ui/static
COPY package.json LICENSE yarn.lock .flowconfig /web-ui/
COPY static/index.hbs /web-ui/static/
COPY scripts /web-ui/scripts
COPY config /web-ui/config
COPY src /web-ui/src
Expand All @@ -13,4 +14,3 @@ WORKDIR /web-ui
RUN yarn install

ENTRYPOINT ["yarn", "start"]

0 comments on commit b1c42c4

Please sign in to comment.