14 lines
283 B
Docker
14 lines
283 B
Docker
FROM debian:latest
|
|
|
|
MAINTAINER Wolfgang Hottgenroth <wolfgang.hottgenroth@icloud.com>
|
|
|
|
|
|
RUN \
|
|
apt-get update && \
|
|
apt-get install -y make && \
|
|
apt-get install -y openssh-client && \
|
|
apt-get install -y git && \
|
|
apt-get install -y python && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|