mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-23 15:19:41 +02:00
10 lines
237 B
Text
10 lines
237 B
Text
|
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
|