commit d36363bfa3fd7c7ca9a3d72f8f9f0c5c49e11e45 Author: John Galt Date: Thu Sep 19 17:56:55 2024 +0200 initial commit diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..310b959 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM nginx:alpine +WORKDIR /usr/share/nginx/html +RUN rm -rf ./* +COPY ./dist/ . +EXPOSE 80 +CMD ["nginx", "-g", "daemon off;"] +