mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-28 00:34:47 -04:00
Files
10 lines
237 B
Docker
10 lines
237 B
Docker
FROM python:3.8-slim as build-stage
|
|||
WORKDIR /app
|
|||
RUN pip install --no-cache-dir mkdocs mkdocs-material
|
|||
COPY . .
|
|||
RUN mkdocs build
|
|||
|
|||
FROM caddy:alpine
|
|||
WORKDIR /app
|
|||
COPY ./Caddyfile /etc/caddy/Caddyfile
|
|||
COPY --from=build-stage /app/site /srv
|