-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDockerfile
More file actions
26 lines (23 loc) · 773 Bytes
/
Dockerfile
File metadata and controls
26 lines (23 loc) · 773 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
25
26
FROM ubuntu:18.04
MAINTAINER Mads Møller, mm@napp.dk
RUN apt update && \
apt install -y --no-install-recommends \
zip \
curl \
python-dev python3-dev \
build-essential libssl-dev libffi-dev \
libxml2-dev libxslt1-dev zlib1g-dev \
python3-pip \
groff \
python3-setuptools \
gpg-agent \
apt-transport-https \
ca-certificates \
software-properties-common && \
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" && \
rm -rf /var/lib/apt/lists/*
RUN apt update && \
apt install -y docker-ce --no-install-recommends && \
rm -rf /var/lib/apt/lists/*
RUN pip3 install awscli aws-sam-cli