diff --git a/Dockerfile b/Dockerfile index 17169b5..bcbc198 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,9 @@ RUN node -v # make the 'app' folder the current working directory WORKDIR /dist COPY . . -CMD [ "pwd" ] +RUN echo "$PWD" FROM nginx -CMD [ "pwd" ] +RUN echo "$PWD" COPY --from=build . /usr/share/nginx/html/ #RUN rm /etc/nginx/conf.d/default.conf