diff --git a/cache.dockerfile b/cache.dockerfile deleted file mode 100644 index bf62cd3..0000000 --- a/cache.dockerfile +++ /dev/null @@ -1,15 +0,0 @@ -# 选择一个 Base 镜像 -FROM node:16 - -# 设置工作目录 -WORKDIR /space - -# 将 by 中的文件列表 COPY 过来 -COPY . . - -# 根据 COPY 过来的文件进行依赖的安装 -RUN npm i - -# 设置好需要的环境变量 -ENV NODE_PATH=/space/node_modules - diff --git a/docker/nginx.conf b/docker/nginx.conf deleted file mode 100644 index 62b7d40..0000000 --- a/docker/nginx.conf +++ /dev/null @@ -1,20 +0,0 @@ -server { - if ($request_method = HEAD) { - return 200; - } - - location / { - alias /usr/share/nginx/html/; - index index.html index.htm; - try_files $uri $uri/ /index.html; - } - - access_log /var/log/nginx/access.log main; - error_log /var/log/nginx/error.log error; - - - error_page 500 502 503 504 /50x.html; - location = /50x.html { - root /usr/share/nginx/html; - } -} \ No newline at end of file diff --git a/src/App.vue b/src/App.vue index 2f7e2ca..8780345 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,26 +1,19 @@ -