Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Verified Commit c9b92cc4 authored by Nicolas Gelot's avatar Nicolas Gelot
Browse files

fix(build): update sed command

parent c833a77b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ RUN apt-get update && apt-get install -y git
RUN pip install -r requirements.txt
RUN python scripts/translate_docs.py

RUN sed -i '/enabled: false/d' -i '/build_only_locale: en/d' mkdocs.yml && mkdocs build --site-dir /tmp/public
RUN sed -i -e '/enabled: false/d' -e '/build_only_locale: en/d' mkdocs.yml && mkdocs build --site-dir /tmp/public

FROM nginx:1.29.4-alpine