From ab41375e522b28a71dbb3df8d1c10c8fc1027988 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=83=D1=80=D0=B4=D0=B5=D0=BD=D0=BA=D0=BE=20=D0=90?= =?UTF-8?q?=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9=20=D0=98=D0=B2=D0=B0=D0=BD?= =?UTF-8?q?=D0=BE=D0=B2=D0=B8=D1=87?= Date: Wed, 2 Apr 2025 07:29:14 +0000 Subject: [PATCH] clear repo --- build.Dockerfile | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 build.Dockerfile diff --git a/build.Dockerfile b/build.Dockerfile deleted file mode 100644 index 9b9d65e..0000000 --- a/build.Dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -FROM --platform=linux/amd64 harbor.vimpelcom.ru/dockerhub/library/nginx:alpine - -ARG DIST_DIR=./src/.vitepress/dist -ARG WROOT_DIR=/usr/share/nginx/html/docs - -WORKDIR ${WROOT_DIR} - -RUN rm -rf ./* -COPY ${DIST_DIR} ./ - -EXPOSE 80 -CMD ["nginx", "-g", "daemon off;"]