Skip to content

Commit

Permalink
Merge pull request #1904 from mscherer/use_qualified_name
Browse files Browse the repository at this point in the history
use a fully qualified name for the container
  • Loading branch information
sgoggins committed Jul 20, 2022
2 parents c61d2a4 + fbbe2ec commit b6c9c5d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions util/docker/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ COPY ./util/docker/frontend/frontend.docker.config.json frontend.config.json
# RUN cp frontend.docker.config.json frontend.config.json

FROM build-stage as core-ui
COPY frontend/package.json .
COPY frontend/package.json .
COPY frontend/package-lock.json .
RUN npm install
RUN npm install @vue/cli
COPY frontend/ .
Expand All @@ -23,7 +24,7 @@ RUN npm run build
# COPY augurface/ .
# RUN npm run build

FROM nginx as production-stage
FROM docker.io/library/nginx as production-stage
COPY --from=core-ui /augur/frontend/dist /usr/share/nginx/core
# COPY --from=augurface /augur/augurface/dist /usr/share/nginx/augurface
COPY ./util/docker/frontend/nginx.conf /etc/nginx/nginx.conf
Expand Down

0 comments on commit b6c9c5d

Please sign in to comment.