1 line
No EOL
228 B
Docker
1 line
No EOL
228 B
Docker
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"] |