Merge pull request #6384 from SDBrett/photon-build

Corrected errors in photon build
This commit is contained in:
James Zabala 2018-11-29 18:08:52 -05:00 committed by GitHub
commit 399c9c44d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM node:10.7.0
FROM node:10.7.0 as nodeportal
RUN mkdir -p /portal_src
RUN mkdir -p /build_dir
@ -24,7 +24,7 @@ RUN tdnf install -y nginx >> /dev/null \
EXPOSE 80
VOLUME /var/cache/nginx /var/log/nginx /run
COPY --from=0 /build_dir/dist /usr/share/nginx/html
COPY --from=nodeportal /build_dir/dist /usr/share/nginx/html
COPY make/photon/portal/nginx.conf /etc/nginx/nginx.conf
STOPSIGNAL SIGQUIT