mirror of
https://github.com/doocs/md.git
synced 2025-01-22 20:04:39 +08:00
7 lines
186 B
Docker
7 lines
186 B
Docker
|
ARG VER_NGX="1.21.6-alpine"
|
||
|
|
||
|
FROM "doocs/md:latest-assets" AS assets
|
||
|
FROM "nginx:$VER_NGX"
|
||
|
LABEL MAINTAINER="ylb<contact@yanglibin.info>"
|
||
|
COPY --from=assets /app/* /usr/share/nginx/html
|