diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..b60e176c36a4b3b0bccecebc23909151ea0c18bd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM nginx +COPY index.html /usr/share/nginx/html/index.html +COPY app.bundle.js usr/share/nginx/html/app.bundle.js +CMD ["nginx", "-g", "daemon off;"] +EXPOSE 80 \ No newline at end of file diff --git a/src/main/resources/public/app.bundle.js b/app.bundle.js similarity index 100% rename from src/main/resources/public/app.bundle.js rename to app.bundle.js diff --git a/src/main/resources/public/index.html b/index.html similarity index 100% rename from src/main/resources/public/index.html rename to index.html