Skip to content

Commit

Permalink
make file created by container editable by everyone
Browse files Browse the repository at this point in the history
  • Loading branch information
erichstuder committed Nov 7, 2024
1 parent 0cd9053 commit cf55c31
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions MBSE/doc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ RUN apt-get update && apt-get install -y wget libasound2 && \
RUN apt-get update && apt-get install -y xvfb tree
RUN python3 -m pip install sphinx sphinx-autobuild sphinxcontrib-drawio sphinx-rtd-theme \
sphinxcontrib-programoutput

RUN echo "umask 0000" >> /root/.bashrc
ENV BASH_ENV=/root/.bashrc
3 changes: 3 additions & 0 deletions Shared/software/firmware_tests/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ RUN autoreconf . -i && \
make install

ENV CPPUTEST_HOME=/opt/cpputest

RUN echo "umask 0000" >> /root/.bashrc
ENV BASH_ENV=/root/.bashrc
3 changes: 3 additions & 0 deletions Textual/doc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ RUN apt-get update && apt-get install -y xvfb tree
RUN python3 -m pip install sphinx sphinx-autobuild sphinxcontrib-drawio sphinx-rtd-theme \
sphinxcontrib-programoutput sphinxcontrib-plantuml sphinx-needs==4.0.0 pillow \
sphinx-gherkindoc setuptools

RUN echo "umask 0000" >> /root/.bashrc
ENV BASH_ENV=/root/.bashrc
3 changes: 3 additions & 0 deletions Textual/simulator/features/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,6 @@ RUN git submodule init && \
cmake --build build --target test && \
cmake --build build --target install
#returns an error and is ignored for the moment as these are "only" tests: cmake --build build --target features

RUN echo "umask 0000" >> /root/.bashrc
ENV BASH_ENV=/root/.bashrc
3 changes: 3 additions & 0 deletions Textual/simulator/unit_tests/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ RUN git clone https://github.com/google/googletest.git && \
cd build && \
cmake .. && \
make

RUN echo "umask 0000" >> /root/.bashrc
ENV BASH_ENV=/root/.bashrc
3 changes: 3 additions & 0 deletions doc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ FROM python:latest

RUN apt-get update && apt-get install -y tree
RUN python3 -m pip install sphinx sphinx-autobuild sphinx-rtd-theme sphinxcontrib-programoutput

RUN echo "umask 0000" >> /root/.bashrc
ENV BASH_ENV=/root/.bashrc

0 comments on commit cf55c31

Please sign in to comment.