forked from cakephp/queue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs.Dockerfile
More file actions
26 lines (19 loc) · 825 Bytes
/
docs.Dockerfile
File metadata and controls
26 lines (19 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Generate the HTML output.
FROM ghcr.io/cakephp/docs-builder as builder
COPY docs /data/docs
RUN cd /data/docs-builder && \
# In the future repeat website for each version
make website LANGS="en" SOURCE=/data/docs DEST=/data/website/
# Build a small nginx container with just the static site in it.
FROM ghcr.io/cakephp/docs-builder:runtime as runtime
# Configure search index script
ENV LANGS="en"
ENV SEARCH_SOURCE="/usr/share/nginx/html"
ENV SEARCH_URL_PREFIX="/queue/1"
COPY --from=builder /data/docs /data/docs
COPY --from=builder /data/website /data/website
COPY --from=builder /data/docs-builder/nginx.conf /etc/nginx/conf.d/default.conf
# Move each version into place
RUN cp -R /data/website/html/* /usr/share/nginx/html \
&& rm -rf /data/website/
RUN ln -s /usr/share/nginx/html /usr/share/nginx/html/