Skip to content
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 alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ RUN apk add -q --update --progress --no-cache ca-certificates
RUN apk add -q --update --progress --no-cache tzdata
ENV TZ=

# Setup Git and SSH
RUN apk add -q --update --progress --no-cache git mandoc git-doc openssh-client
# Setup Git and SSH and GPG
RUN apk add -q --update --progress --no-cache git mandoc git-doc openssh-client gnupg
COPY .ssh.sh /root/
RUN chmod +x /root/.ssh.sh
# Retro-compatibility symlink
Expand Down
4 changes: 2 additions & 2 deletions debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ RUN apt-get update -y && \
rm -r /var/cache/* /var/lib/apt/lists/*
ENV TZ=

# Setup Git and SSH
# Setup Git and SSH and GPG
# Workaround for older Debian in order to be able to sign commits
RUN echo "deb https://deb.debian.org/debian bookworm main" >> /etc/apt/sources.list && \
apt-get update && \
apt-get install -y --no-install-recommends -t bookworm git git-man && \
rm -r /var/cache/* /var/lib/apt/lists/*
RUN apt-get update -y && \
apt-get install -y --no-install-recommends man openssh-client less && \
apt-get install -y --no-install-recommends man openssh-client less gpg && \
rm -r /var/cache/* /var/lib/apt/lists/*
COPY .ssh.sh /root/
RUN chmod +x /root/.ssh.sh
Expand Down