Commit f15399c5 by Lyan
parents 4174a690 6b37eb70
FROM nginx # build stage
FROM node:12-alpine as build-stage
#RUN rm -rf /usr/share/nginx/html/* WORKDIR /app
RUN rm -rf /etc/nginx/conf.d/* COPY package*.json ./
RUN npm config set sass_binary_site https://npm.taobao.org/mirrors/node-sass -g && npm config set registry https://registry.npm.taobao.org
#COPY dist /usr/share/nginx/html RUN npm install
COPY nginx.conf /etc/nginx/conf.d/ COPY . .
RUN npm run build
COPY docker-entrypoint.sh /usr/local/bin/
# production stage
ENTRYPOINT ["sh","/usr/local/bin/docker-entrypoint.sh"] FROM nginx:stable-alpine as production-stage
COPY --from=build-stage /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
...@@ -13,7 +13,7 @@ gzip_disable "MSIE [1-6]\."; ...@@ -13,7 +13,7 @@ gzip_disable "MSIE [1-6]\.";
server { server {
listen 8080; listen 8080;
server_name 81.68.189.225; server_name localhost;
location / { location / {
root /usr/share/nginx/html; root /usr/share/nginx/html;
index index.html index.htm; index index.html index.htm;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment