-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
59 lines (53 loc) · 1.43 KB
/
Dockerfile
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Especifica para a imagem base qual arquitetura deseja utilizar
ARG ARCH
FROM --platform="${ARCH}" ubuntu:22.04
# Todas variáveis de ambiente necessário
ENV TZ=America/Sao_Paulo
ENV LC_ALL=pt_BR.utf8
ENV LANG=pt_BR.utf8
ENV LANGUAGE=pt_BR.utf8
ENV PYTHONIOENCODING=UTF-8
ENV DEBIAN_FRONTEND=noninteractive
ENV DEBCONF_NOWARNINGS=yes
LABEL contributors="Diego Maia"
LABEL contributors="Júlio Swytzka"
LABEL maintainer="Rafael Dutra <[email protected]>"
LABEL description="Developing environment using Docker and Docker Compose"
# https://github.com/aws/aws-cli/issues/4685#issuecomment-829600284
# Lista de pacotes para Ubuntu para quando precisar adicionar na lista abaixo:
# https://packages.ubuntu.com/
RUN apt-get update -qq --fix-missing --yes && \
apt-get install -qq --no-install-recommends --yes \
ca-certificates \
gcc \
git \
less \
coreutils \
libffi-dev \
make \
openssh-client \
vim \
wget \
unzip \
libcurl4 \
curl \
jq \
nmap \
util-linux \
bash-completion \
tree \
file \
dnsutils \
python3.10 \
python3-pip \
locales \
locales-all \
bc \
mysql-client \
python3-virtualenv \
python3.10-venv \
tzdata && \
apt-get clean && rm -rf /var/lib/apt/lists/*
RUN ln -fs /usr/share/zoneinfo/America/Sao_Paulo /etc/localtime && \
dpkg-reconfigure -f noninteractive tzdata && \
ln -sf /usr/bin/python3.10 /usr/bin/python3