diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3e98192 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM nginx:1.25.2-alpine + + +COPY . /usr/share/nginx/html + +EXPOSE 80 +STOPSIGNAL SIGQUIT +CMD ["nginx", "-g", "daemon off;"]