File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ RUN mkdir -p /usr/share/man/man1 && apk add --no-cache openjdk8 graphviz && \
5
5
wget -q -O plantuml.jar https://github.com/plantuml/plantuml/releases/latest/download/plantuml.jar && \
6
6
mkdir -p /opt/plantuml && mv plantuml.jar /opt/plantuml/plantuml.jar
7
7
ENV ALLOW_PLANTUML_INCLUDE=true
8
- COPY --chmod=777 script/plantuml.sh /usr/local/bin/plantuml
8
+ COPY script/plantuml.sh /usr/local/bin/plantuml
9
+ RUN chmod +x /usr/local/bin/plantuml
9
10
10
11
# Download Python Markdown + dependencies
11
12
COPY config/requirements.txt /usr/local/src/requirements.txt
@@ -20,5 +21,6 @@ COPY config/theme.main.html /usr/local/src/theme.main.html
20
21
COPY config/theme.404.html /usr/local/src/theme.404.html
21
22
22
23
# Entrypoint
23
- COPY --chmod=777 script/makedocs.sh /usr/local/bin/makedocs
24
+ COPY script/makedocs.sh /usr/local/bin/makedocs
25
+ RUN chmod +x /usr/local/bin/makedocs
24
26
ENTRYPOINT [ "makedocs" ]
You can’t perform that action at this time.
0 commit comments