Merge branch 'devel' of https://git.ipr.univ-rennes1.fr/epsi/msspec_python3 into devel
epsi-builds/msspec_python3/pipeline/head There was a failure building this commit Details

This commit is contained in:
Sylvain Tricot 2021-06-30 15:04:08 +02:00
commit de85a3f0c7
1 changed files with 5 additions and 1 deletions

View File

@ -17,6 +17,10 @@ RUN make install VERBOSE=1 INSTALL_PREFIX=/opt
# Add a non-privileged user # Add a non-privileged user
RUN useradd -ms /bin/bash msspec RUN useradd -ms /bin/bash msspec
USER msspec USER msspec
WORKDIR /home/msspec
RUN echo "export PS1=\"\w\$ \"" >> .bashrc
RUN echo "$(msspec -e)" >> .bashrc
RUN mkdir data
# Run the msspec frontend command on startup # Run the msspec frontend command on startup
ENTRYPOINT ["msspec"] ENTRYPOINT ["/bin/bash"]