install.sh 397 B

123456789101112
  1. #!/bin/bash
  2. set -x
  3. #
  4. # Copyright IBM Corp. All Rights Reserved.
  5. #
  6. # SPDX-License-Identifier: Apache-2.0
  7. #
  8. # Based thie file on https://github.com/docker-library/mongo/blob/master/3.4/Dockerfile &
  9. # https://docs.mongodb.com/manual/tutorial/install-mongodb-enterprise-on-ubuntu/#install-mongodb-enterprise
  10. set -x \
  11. && apt-get update && apt-get install -y supervisor && rm -rf /var/lib/apt/lists/*