37 lines
675 B
Docker
37 lines
675 B
Docker
FROM python:3.12.4-bookworm
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
WORKDIR /
|
|
COPY requirements.txt .
|
|
COPY requirements.yaml .
|
|
|
|
RUN python3 -m pip install --upgrade pip \
|
|
&& python3 -m pip install --no-cache-dir -r requirements.txt
|
|
|
|
RUN ansible-galaxy install -r requirements.yaml
|
|
|
|
RUN apt-get update \
|
|
&& apt-get -y --no-install-recommends install \
|
|
vim \
|
|
tmux \
|
|
htop \
|
|
git \
|
|
dnsutils \
|
|
mc \
|
|
ca-certificates \
|
|
tree \
|
|
wget \
|
|
curl \
|
|
whois \
|
|
net-tools \
|
|
apt-transport-https \
|
|
moreutils \
|
|
acl \
|
|
ripgrep \
|
|
pwgen \
|
|
keychain \
|
|
bc \
|
|
jq \
|
|
&& rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/* requirements.txt requirements.yaml\
|
|
&& apt-get clean
|