Add additional utilities

This commit is contained in:
Chris Decelles 2020-08-04 10:24:49 -04:00
parent 061416ea66
commit 22cbfc40f9
2 changed files with 18 additions and 1 deletions

View File

@ -2,7 +2,13 @@ FROM centos:8
RUN yum update -y && yum install -y \
which \
git \
bash \
curl \
man \
vim \
sudo \
gnupg \
python36
# Install jupyter

View File

@ -1,7 +1,18 @@
FROM ubuntu:20.04
RUN apt-get update && apt-get install -y \
RUN apt-get update && DEBIAN_FRONTEND="noninteractive" apt-get install -y \
git \
bash \
curl \
htop \
man \
vim \
ssh \
sudo \
lsb-release \
ca-certificates \
locales \
gnupg \
python3 \
python3-pip