From dd5e7082874f23109594731e6cbb9c5c9514b8d7 Mon Sep 17 00:00:00 2001 From: ETY001 Date: Sun, 5 Jul 2020 10:15:31 +0800 Subject: [PATCH] fix path --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cc99e28..13da57b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN cd /app && \ FROM nginx:latest WORKDIR /app EXPOSE 80 -COPY --from=0 /steemconnect/docker_config/nginx.conf /etc/nginx/conf.d/default.conf -COPY --from=0 /steemconnect/www /app +COPY --from=0 /app/docker_config/nginx.conf /etc/nginx/conf.d/default.conf +COPY --from=0 /app/www /app STOPSIGNAL SIGINT CMD ["nginx", "-g", "daemon off;"]