From cbdef4e410a52145e421e305cd4e627f67c1eb2f Mon Sep 17 00:00:00 2001 From: Ahmed Hesham Date: Thu, 11 Sep 2025 16:33:06 +0300 Subject: [PATCH] added dockerfile and index.html --- Dockerfile | 6 ++++++ index.html | 25 +++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 Dockerfile create mode 100644 index.html diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e2e6666 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM node:18-alpine +WORKDIR /app +RUN npm install -g docsify-cli +COPY . . +EXPOSE 3000 +CMD ["docsify", "serve", ".","-p", "3000"] \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..9151759 --- /dev/null +++ b/index.html @@ -0,0 +1,25 @@ + + + + + + Ghaymah Docs + + + + + +
Loading...
+ + + + + + + \ No newline at end of file