6 lines
161 B
Docker
6 lines
161 B
Docker
FROM ubuntu:18.04
|
|
RUN apt-get update \
|
|
&& apt-get install -y \
|
|
python sudo bash ca-certificates iproute2 python-apt aptitude \
|
|
&& apt-get clean
|