Parcourir la source

新建文件 Dockerfile

hunankede il y a 1 an
Parent
commit
66fa33e6f1
1 fichiers modifiés avec 7 ajouts et 0 suppressions
  1. 7 0
      Dockerfile

+ 7 - 0
Dockerfile

@@ -0,0 +1,7 @@
+FROM nginx:alpine
+WORKDIR /app
+COPY dist /app
+COPY nginx/nginx.conf /etc/nginx/
+COPY nginx/conf.d/default.conf /etc/nginx/conf.d
+
+EXPOSE 8080