Dockerfiles/dev-base/Dockerfile

18 lines
427 B
Docker
Raw Permalink Normal View History

2019-02-18 06:27:27 +00:00
FROM ubuntu:18.04
MAINTAINER Newnius <docker@newnius.com>
2019-02-18 09:13:28 +00:00
RUN yes | unminimize && \
apt update && \
apt install -y curl openssh-server vim openjdk-8-jre python3-pip git bash-completion && \
2019-04-17 05:13:13 +00:00
pip3 install numpy scipy pandas scikit-learn matplotlib sklearn && \
rm -rf /var/lib/apt/lists/*
2019-02-18 06:27:27 +00:00
RUN echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
WORKDIR /root
2019-04-17 05:13:13 +00:00
ADD bootstrap.sh /etc/bootstrap.sh
CMD ["/etc/bootstrap.sh"]