diff --git a/Dockerfile b/Dockerfile index 0f92487..c9d5beb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,14 +3,23 @@ FROM node:bookworm AS build RUN node -v # make the 'app' folder the current working directory + +RUN echo "----------------------------" +RUN pwd +RUN ls +RUN echo "----------------------------" WORKDIR /dist COPY . . +RUN echo "----------------------------" RUN pwd RUN ls +RUN echo "----------------------------" FROM nginx +RUN echo "----------------------------" RUN pwd RUN ls +RUN echo "----------------------------" COPY --from=build . /usr/share/nginx/html/ #RUN rm /etc/nginx/conf.d/default.conf