debug dockerfile
This commit is contained in:
parent
b3573a6a31
commit
d03f7074b3
|
@ -5,9 +5,9 @@ RUN node -v
|
||||||
# make the 'app' folder the current working directory
|
# make the 'app' folder the current working directory
|
||||||
WORKDIR /dist
|
WORKDIR /dist
|
||||||
COPY . .
|
COPY . .
|
||||||
CMD [ "pwd" ]
|
RUN echo "$PWD"
|
||||||
FROM nginx
|
FROM nginx
|
||||||
CMD [ "pwd" ]
|
RUN echo "$PWD"
|
||||||
COPY --from=build . /usr/share/nginx/html/
|
COPY --from=build . /usr/share/nginx/html/
|
||||||
|
|
||||||
#RUN rm /etc/nginx/conf.d/default.conf
|
#RUN rm /etc/nginx/conf.d/default.conf
|
||||||
|
|
Loading…
Reference in New Issue