diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5f61a72 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +# Use a lightweight nginx image +FROM nginx:alpine + +# Copy your static files into the nginx web directory +COPY . /usr/share/nginx/html + +# Expose the port nginx serves from +EXPOSE 80 + +# Start nginx +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/static.json b/static.json deleted file mode 100644 index ce399be..0000000 --- a/static.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "root": ".", - "clean_urls": false, - "routes": { - "/": "index.html" - } -}