Initial Docs Push
This commit is contained in:
10
Dockerfile
Normal file
10
Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM python:3.13-slim AS builder
|
||||
WORKDIR /docs
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
COPY . .
|
||||
RUN mkdocs build --clean
|
||||
|
||||
FROM nginx:alpine
|
||||
COPY --from=builder /docs/site /usr/share/nginx/html
|
||||
EXPOSE 80
|
||||
Reference in New Issue
Block a user