diff --git a/.vscode/settings.json b/.vscode/settings.json index 0a6a85b..7e5f3fd 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,4 @@ { - "livePreview.defaultPreviewPath": "/src/index.html" + "livePreview.defaultPreviewPath": "/src/index.html", + "Codegeex.RepoIndex": true } \ No newline at end of file diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..17e8f14 --- /dev/null +++ b/dockerfile @@ -0,0 +1,12 @@ +FROM harbor.ingress.lab.gitfitlive.com/mirror/nginx:alpine + + +RUN rm -rf /usr/share/nginx/html/* + +COPY src/ /usr/share/nginx/html/ + +# COPY nginx.conf /etc/nginx/nginx.conf + +EXPOSE 80 + +CMD ["nginx", "-g", "daemon off;"]