Skip to content

Commit

Permalink
update Dockerfile to use new index.hbs instead of index.html
Browse files Browse the repository at this point in the history
Change-Id: I7d693f94e1460bebd49fa85859b863a4b91c53e6
Signed-off-by: Greg Sheremeta <[email protected]>
  • Loading branch information
gregsheremeta committed Jan 8, 2019
1 parent a0b71d6 commit f09ab06
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 f09ab06

Please sign in to comment.