diff --git a/nginx/Dockerfile b/nginx/Dockerfile index 089b258..1f9f3e9 100644 --- a/nginx/Dockerfile +++ b/nginx/Dockerfile @@ -1,11 +1,5 @@ FROM nginx:latest -# Copy template config -COPY nginx.conf.template /etc/nginx/nginx.conf.template -COPY nginx_setup.conf.template /etc/nginx/nginx_setup.conf.template - -COPY entrypoint.sh /entrypoint.sh - # Install dependencies needed to add NodeSource repo RUN apt-get update && apt-get install -y \ curl \ @@ -19,6 +13,10 @@ RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \ && apt-get install -y nodejs \ && npm install -g npm@latest +COPY nginx.conf.template /etc/nginx/nginx.conf.template +COPY nginx_setup.conf.template /etc/nginx/nginx_setup.conf.template +COPY entrypoint.sh /entrypoint.sh + WORKDIR /app COPY vue/ ./ RUN npm install