From d227127fc735f11ee6fe1b49da2c03c252a3222a Mon Sep 17 00:00:00 2001 From: gugulethu Date: Sun, 22 Jun 2025 17:54:34 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3315d45..1d10b1a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +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 \ No newline at end of file +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 \ No newline at end of file