Skip to content
Snippets Groups Projects
Commit 57932124 authored by Giménez, Sergio's avatar Giménez, Sergio
Browse files

Avoid build process to fail if config.json is missing

parent 2ce1c5f5
Branches
Tags
1 merge request!43Avoid build process to fail if config.json is missing
Pipeline #83909 passed
...@@ -15,7 +15,7 @@ RUN pip install httpx sphinx sphinx_rtd_theme vale ansible ...@@ -15,7 +15,7 @@ RUN pip install httpx sphinx sphinx_rtd_theme vale ansible
RUN ./build-docs.sh RUN ./build-docs.sh
# Generate sample configuration file, and remove an existing one if present # Generate sample configuration file, and remove an existing one if present
RUN rm config.json >/dev/null 2>&1 RUN rm -f config.json >/dev/null 2>&1
RUN ln -s config.json.example config.json RUN ln -s config.json.example config.json
# ENTRYPOINT ["sleep", "inf"] # ENTRYPOINT ["sleep", "inf"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment