From d6c6956380e0817537da9425c045eceed62c8d5b Mon Sep 17 00:00:00 2001 From: Adrian Plata <51415348+adrian-plata@users.noreply.github.com> Date: Wed, 7 Aug 2019 16:42:59 -0700 Subject: [PATCH] deleting unlinked content (#9218) Signed-off-by: Adrian Plata --- engine/examples/mongodb/Dockerfile | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 engine/examples/mongodb/Dockerfile diff --git a/engine/examples/mongodb/Dockerfile b/engine/examples/mongodb/Dockerfile deleted file mode 100644 index eb020979f0..0000000000 --- a/engine/examples/mongodb/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -# Dockerizing MongoDB: Dockerfile for building MongoDB images -# Based on ubuntu:16.04, installs MongoDB following the instructions from: -# http://docs.mongodb.org/manual/tutorial/install-mongodb-on-ubuntu/ - -FROM ubuntu:16.04 - -# Installation: -# Import MongoDB public GPG key AND create a MongoDB list file -RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv EA312927 -RUN echo "deb http://repo.mongodb.org/apt/ubuntu $(cat /etc/lsb-release | grep DISTRIB_CODENAME | cut -d= -f2)/mongodb-org/3.2 multiverse" | tee /etc/apt/sources.list.d/mongodb-org-3.2.list - -# Update apt-get sources AND install MongoDB -RUN apt-get update && apt-get install -y mongodb-org - -# Create the MongoDB data directory -RUN mkdir -p /data/db - -# Expose port #27017 from the container to the host -EXPOSE 27017 - -# Set /usr/bin/mongod as the dockerized entry-point application -ENTRYPOINT ["/usr/bin/mongod"]