Upload files to "/"

This commit is contained in:
gugulethu 2025-06-22 18:02:14 +02:00
commit 6178f7e687

1
Dockerfile Normal file
View file

@ -0,0 +1 @@
FROM python:3.11-slim AS builder WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir --upgrade -r requirements.txt COPY . . RUN mkdocs build FROM nginx:alpine RUN rm -rf /usr/share/nginx/html/* COPY --from=builder /app/site /usr/share/nginx/html EXPOSE 80