mirror of https://github.com/MISP/misp-docker
Fix permissions
parent
944f89479e
commit
f519e804ee
|
@ -15,14 +15,19 @@ RUN locale-gen en_US.UTF-8
|
||||||
ENV LANG en_US.UTF-8
|
ENV LANG en_US.UTF-8
|
||||||
|
|
||||||
RUN useradd misp && usermod -aG sudo misp
|
RUN useradd misp && usermod -aG sudo misp
|
||||||
|
|
||||||
USER misp
|
|
||||||
|
|
||||||
# Install script
|
# Install script
|
||||||
COPY INSTALL_NODB.sh .
|
COPY INSTALL_NODB.sh .
|
||||||
RUN chmod +x INSTALL_NODB.sh
|
RUN chmod +x INSTALL_NODB.sh
|
||||||
|
RUN echo "ALL ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
|
||||||
|
|
||||||
|
|
||||||
|
USER misp
|
||||||
|
|
||||||
RUN bash INSTALL_NODB.sh -A -u
|
RUN bash INSTALL_NODB.sh -A -u
|
||||||
|
|
||||||
|
USER root
|
||||||
|
|
||||||
# Supervisord Setup
|
# Supervisord Setup
|
||||||
RUN ( \
|
RUN ( \
|
||||||
echo '[supervisord]'; \
|
echo '[supervisord]'; \
|
||||||
|
|
Loading…
Reference in New Issue