diff --git a/Dockerfile b/Dockerfile index 4271ff4..1db4281 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 EXPOSE 80 CMD ["mkdocs", "serve", "--host", "0.0.0.0", "--port", "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 EXPOSE 80 CMD ["mkdocs", "build"] \ No newline at end of file