diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c371857 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM nginx:stable-alpine + +COPY dist/ /usr/share/nginx/html/ +COPY nginx.conf /etc/nginx/conf.d/default.conf + +EXPOSE 80 + +CMD ["nginx", "-g", "daemon off;"]