-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDockerfile
More file actions
24 lines (20 loc) · 693 Bytes
/
Dockerfile
File metadata and controls
24 lines (20 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
FROM ubuntu:xenial-20180123
USER root
RUN apt-get update \
&& apt-get upgrade --assume-yes \
&& apt-get install -y software-properties-common \
&& apt-add-repository ppa:ansible/ansible \
&& apt-get update \
&& apt-get install --no-install-recommends \
--assume-yes \
python2.7-minimal=2.7.12* \
python-pip=8.1.1-* \
unzip=6.0* \
wget=1.17.1* \
zip=3.0* \
ansible \
&& apt-get clean
RUN pip install --no-cache-dir \
pip==9.0.1 \
setuptools==38.4.0
RUN pip install --no-cache-dir awscli==1.14.30