Skip to content

Instantly share code, notes, and snippets.

@fcharmy
Last active August 31, 2018 07:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fcharmy/87a0f9c1f86b30aab232598493964402 to your computer and use it in GitHub Desktop.
Save fcharmy/87a0f9c1f86b30aab232598493964402 to your computer and use it in GitHub Desktop.
mongodb-4.0.2
FROM python:3.7
RUN wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-4.0.2.tgz
RUN tar -zxvf mongodb-*.tgz
RUN rm mongodb-*.tgz
RUN mkdir -p /data/db
ENV PATH="/mongodb-linux-x86_64-4.0.2/bin:${PATH}"
EXPOSE 27017
ENTRYPOINT ["mongod"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment