FROM mongo:4.4

# Prepare the base image
RUN apt-get update -y
RUN apt-get  install -y supervisor vim
COPY Docker/supervisordmongo.conf /etc/supervisor/supervisord.conf
CMD /usr/bin/supervisord -c /etc/supervisor/supervisord.conf

#CMD bash
