From 7458122717ce92c9d0ccda68168a2adbd87711ac 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?= Date: Mon, 23 Jun 2025 11:30:32 +0300 Subject: [PATCH] up --- build.Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 build.Dockerfile diff --git a/build.Dockerfile b/build.Dockerfile new file mode 100644 index 0000000..9b9d65e --- /dev/null +++ b/build.Dockerfile @@ -0,0 +1,12 @@ +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;"]