mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-07 08:31:55 +00:00
13 lines
322 B
Docker
13 lines
322 B
Docker
FROM ubuntu:18.04
|
|
|
|
MAINTAINER Newnius <docker@newnius.com>
|
|
|
|
RUN yes | unminimize && \
|
|
apt update && \
|
|
apt install -y curl openssh-server vim openjdk-8-jre python3-pip git bash-completion && \
|
|
pip3 install numpy scipy pandas scikit-learn matplotlib
|
|
|
|
RUN echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
|
|
|
|
WORKDIR /root
|