From d36363bfa3fd7c7ca9a3d72f8f9f0c5c49e11e45 Mon Sep 17 00:00:00 2001 From: John Galt Date: Thu, 19 Sep 2024 17:56:55 +0200 Subject: [PATCH] initial commit --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile 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;"] +