Revert to previous working dockerfile
This commit is contained in:
parent
162ae2c783
commit
8f7580094c
1 changed files with 10 additions and 29 deletions
39
Dockerfile
39
Dockerfile
|
|
@ -1,39 +1,20 @@
|
||||||
# ───────────────────────────────────────────────────────
|
# Use the official Python image as a base
|
||||||
# 1) Build stage: install MkDocs & compile your site
|
FROM python:3.11-slim
|
||||||
# ───────────────────────────────────────────────────────
|
|
||||||
FROM python:3.11-slim AS builder
|
|
||||||
|
|
||||||
# prevent interactive prompts
|
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
|
||||||
|
|
||||||
|
# Set the working directory in the container
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# copy & install dependencies
|
# Copy the requirements file if you have one
|
||||||
COPY requirements.txt .
|
COPY requirements.txt .
|
||||||
|
|
||||||
|
# Install MkDocs and any other dependencies
|
||||||
RUN pip install --no-cache-dir -r requirements.txt
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
|
|
||||||
# copy our doc sources & build
|
# Copy the entire MkDocs project into the container
|
||||||
COPY . .
|
COPY . .
|
||||||
# note: if you need a custom config or extra flags, adjust here
|
|
||||||
RUN mkdocs build
|
|
||||||
|
|
||||||
|
# Expose the port that MkDocs will run on
|
||||||
# ───────────────────────────────────────────────────────
|
|
||||||
# 2) Run stage: serve the built site via nginx
|
|
||||||
# ───────────────────────────────────────────────────────
|
|
||||||
FROM nginx:alpine
|
|
||||||
|
|
||||||
# remove default nginx html
|
|
||||||
RUN rm -rf /usr/share/nginx/html/*
|
|
||||||
|
|
||||||
# copy over our static site from the builder
|
|
||||||
COPY --from=builder /app/site/ /usr/share/nginx/html/
|
|
||||||
|
|
||||||
# (optional) if you have a custom nginx.conf, uncomment:
|
|
||||||
# COPY nginx.conf /etc/nginx/nginx.conf
|
|
||||||
|
|
||||||
# expose HTTP
|
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
|
|
||||||
# run nginx in foreground
|
# Command to run MkDocs
|
||||||
CMD ["nginx", "-g", "daemon off;"]
|
CMD ["mkdocs", "build"]
|
||||||
Loading…
Add table
Add a link
Reference in a new issue