diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..90770f10 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +# Used a lightweight web server as the base image +FROM nginx:alpine + +# Copy the static website files to the appropriate directory +COPY . /usr/share/nginx/html + +# Expose the default HTTP port +EXPOSE 80 + +# Start the web server +CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file