mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-03-04 18:30:38 +00:00
31 lines
541 B
Docker
31 lines
541 B
Docker
FROM debian:jessie
|
|
MAINTAINER AJ Bowen <aj@soulshake.net>
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
wkhtmltopdf \
|
|
bsdmainutils \
|
|
ca-certificates \
|
|
curl \
|
|
groff \
|
|
jq \
|
|
less \
|
|
man \
|
|
pssh \
|
|
python \
|
|
python-pip \
|
|
python-docutils \
|
|
ssh \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install \
|
|
awscli \
|
|
pdfkit \
|
|
PyYAML \
|
|
termcolor
|
|
|
|
WORKDIR $HOME
|
|
RUN echo "alias ll='ls -lahF'" >> /root/.bashrc
|
|
ENTRYPOINT ["/root/prepare-vms/scripts/trainer-cli"]
|
|
|