-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.dev
34 lines (31 loc) · 884 Bytes
/
Dockerfile.dev
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
27
28
29
30
31
32
33
34
FROM ubuntu:latest
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y \
&& apt-get install -y software-properties-common
RUN add-apt-repository ppa:deadsnakes/ppa
RUN apt-get update -y \
&& apt-get install -y \
python3.8 \
python3.8-distutils \
python3.9 \
python3.9-distutils \
python3.10 \
python3.10-distutils \
python3.11 \
python3.11-distutils \
python3.12 \
python3.12-distutils \
python3-pip \
python3-apt \
redis-tools \
postgresql-client \
mysql-client \
git \
curl \
unzip \
groff \
&& rm -rf /var/lib/apt/lists/*
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" \
&& unzip awscliv2.zip \
&& ./aws/install
RUN python3 -m pip install tox awscli-local[ver2]