mirror of
https://github.com/rancher/docs.git
synced 2026-02-06 12:45:20 +01:00
11 lines
237 B
Docker
11 lines
237 B
Docker
FROM rancher/docs:latest as prod
|
|
|
|
FROM rancher/docs:build
|
|
|
|
COPY --from=prod /usr/share/nginx/html/docs/final.algolia.json /run
|
|
WORKDIR /run
|
|
COPY package.json package.json
|
|
COPY scripts scripts
|
|
|
|
ENTRYPOINT ["yarn","run","publish-algolia"]
|