Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[All] Packages in alphabetical order #450

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions elao.app.docker/.manala/docker/Dockerfile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ RUN \
apt-get --quiet update \
&& apt-get --quiet --yes --purge --autoremove upgrade \
&& apt-get --quiet --yes --no-install-recommends --verbose-versions install \
gnupg \
ca-certificates \
sudo \
curl \
gnupg \
make \
socat \
sudo \
{{- if eq (.version|int) 10 }}
# Openssl packages are broken on buster/arm64, install them from bullseye
# See: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=989604
Expand Down
23 changes: 12 additions & 11 deletions lazy.ansible/.manala/docker/Dockerfile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,20 @@ RUN \
apt-get --quiet update \
&& apt-get --quiet --yes --purge --autoremove upgrade \
&& apt-get --quiet --yes --no-install-recommends --verbose-versions install \
s6 \
sudo \
curl \
ca-certificates \
gnupg \
libarchive-tools bzip2 \
bash-completion \
rsync \
bzip2 \
ca-certificates \
curl \
git \
make \
gnupg \
less \
vim \
libarchive-tools \
make \
rsync \
s6 \
socat \
sudo \
vim \
# User
&& addgroup --gid ${MANALA_GROUP_ID} lazy \
&& adduser --home /home/lazy --shell /bin/bash --uid ${MANALA_USER_ID} --gecos lazy --ingroup lazy --disabled-password lazy \
Expand Down Expand Up @@ -87,11 +88,11 @@ RUN \
apt-get --quiet update \
&& apt-get --quiet --yes --no-install-recommends --verbose-versions install \
openssh-client \
sshpass \
python3 \
pipx \
python3 \
python3-argcomplete \
shellcheck \
sshpass \
{{- range $package := $apt.packages }}
{{ $package }} \
{{- end }}
Expand Down
25 changes: 14 additions & 11 deletions lazy.kubernetes/.manala/docker/Dockerfile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,20 @@ RUN \
apt-get --quiet update \
&& apt-get --quiet --yes --purge --autoremove upgrade \
&& apt-get --quiet --yes --no-install-recommends --verbose-versions install \
s6 \
sudo \
curl \
ca-certificates \
gnupg \
libarchive-tools bzip2 \
bash-completion \
rsync \
bzip2 \
ca-certificates \
curl \
git \
make \
gnupg \
less \
vim \
libarchive-tools \
make \
rsync \
s6 \
socat \
sudo \
vim \
# User
&& addgroup --gid ${MANALA_GROUP_ID} lazy \
&& adduser --home /home/lazy --shell /bin/bash --uid ${MANALA_USER_ID} --gecos lazy --ingroup lazy --disabled-password lazy \
Expand Down Expand Up @@ -268,8 +269,9 @@ RUN \
# Openstack
RUN \
BUILD_PACKAGES=( \
gcc \
libpython3-dev \
pipx \
libpython3-dev gcc \
) \
&& apt-get --quiet update \
&& apt-get --quiet --yes --no-install-recommends --verbose-versions install \
Expand All @@ -291,8 +293,9 @@ RUN \
# Swift
RUN \
BUILD_PACKAGES=( \
gcc \
libpython3-dev \
pipx \
libpython3-dev gcc \
) \
&& apt-get --quiet update \
&& apt-get --quiet --yes --no-install-recommends --verbose-versions install \
Expand Down
23 changes: 12 additions & 11 deletions lazy.symfony/.manala/docker/Dockerfile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,20 @@ RUN \
apt-get --quiet update \
&& apt-get --quiet --yes --purge --autoremove upgrade \
&& apt-get --quiet --yes --no-install-recommends --verbose-versions install \
s6 \
sudo \
curl \
ca-certificates \
gnupg \
libarchive-tools bzip2 \
bash-completion \
rsync \
bzip2 \
ca-certificates \
curl \
git \
make \
gnupg \
less \
vim \
libarchive-tools \
make \
rsync \
s6 \
socat \
sudo \
vim \
# User
&& addgroup --gid ${MANALA_GROUP_ID} lazy \
&& adduser --home /home/lazy --shell /bin/bash --uid ${MANALA_USER_ID} --gecos lazy --ingroup lazy --disabled-password lazy \
Expand Down Expand Up @@ -162,8 +163,8 @@ Signed-By: /etc/apt/keyrings/sury_php.gpg\n\
php{{ $php.version }}-opcache \
php{{ $php.version }}-xdebug \
# Symfony
php{{ $php.version }}-intl \
php{{ $php.version }}-curl \
php{{ $php.version }}-intl \
php{{ $php.version }}-mbstring \
php{{ $php.version }}-xml \
# Project
Expand Down Expand Up @@ -225,8 +226,8 @@ Signed-By: /etc/apt/keyrings/yarn.asc\n\
RUN \
apt-get --quiet update \
&& apt-get --quiet --yes --no-install-recommends --verbose-versions install \
openssh-client \
ansible \
openssh-client \
&& ansible-galaxy install --roles-path /usr/share/ansible/roles \
ansistrano.deploy,3.14.0 \
ansistrano.rollback,3.1.0 \
Expand Down