Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
d9d69bb5
Commit
d9d69bb5
authored
Jun 18, 2020
by
Marc Egger
Browse files
refs #10754 make path executable and remove requirements.txt
parent
5ade9776
Pipeline
#3537
passed with stages
in 5 minutes and 58 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Documentation/Makefile
View file @
d9d69bb5
...
...
@@ -4,4 +4,5 @@
docker-html
:
rm
-rf
_build
docker build
-t
sphinx-qfq ./docker-sphinx-qfq
bash ./docker-sphinx-qfq/makePathExecutable.sh
"
${PWD}
"
docker run
--rm
--user
$$
(
id
-u
)
:
$$
(
id
-g
)
-v
$
${PWD}
:/docs sphinx-qfq sphinx-build
-M
html
"."
"_build"
\ No newline at end of file
Documentation/docker-sphinx-qfq/Dockerfile
View file @
d9d69bb5
...
...
@@ -5,4 +5,5 @@ ADD requirements.txt /docs
RUN
apt-get update
&&
\
apt-get upgrade
-y
&&
\
apt-get
install
-y
git
RUN
pip3
install
-r
requirements.txt
\ No newline at end of file
RUN
pip3
install
-r
requirements.txt
RUN
rm
requirements.txt
\ No newline at end of file
Documentation/docker-sphinx-qfq/makePathExecutable.sh
0 → 100644
View file @
d9d69bb5
#!/bin/bash -ex
cd
"
$(
dirname
"
$1
"
)
"
while
[[
"
$PWD
"
!=
"/"
]]
do
echo
"make
$PWD
executable"
chmod
o+x
.
||
true
cd
..
done
\ No newline at end of file
Marc Egger
@megger
mentioned in commit
c4789a06
·
Apr 12, 2021
mentioned in commit
c4789a06
mentioned in commit c4789a0677b0723f4649460a0e0a999314a0d537
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment