blob: 720f50d460c709744050e428a8191a35470b895f (
plain)
1
2
3
4
5
6
7
8
|
FROM ubuntu:14.04
RUN rm \
/etc/apt/apt.conf.d/20apt-esm-hook.conf \
/etc/apt/sources.list.d/ubuntu-esm-infra-trusty.list \
&& apt-get update \
&& apt-get install -y \
python sudo bash ca-certificates iproute2 python-apt aptitude \
&& apt-get clean
|