Dockerfile 322 B

12345678910111213
  1. FROM docker.shemic.com/os/alpine:latest
  2. MAINTAINER Rabin "https://github.com/shemic"
  3. RUN echo 'http://dl-3.alpinelinux.org/alpine/edge/testing'>>/etc/apk/repositories
  4. RUN apk update
  5. RUN wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.4.5.tgz
  6. RUN mkdir /data
  7. VOLUME ["/data"]
  8. ENTRYPOINT ["sh"]