Skip to content
Open
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
3 changes: 2 additions & 1 deletion pacstall-docker-builder
Original file line number Diff line number Diff line change
Expand Up @@ -315,12 +315,13 @@ ENV TZ="Africa/Libreville"
RUN ln -snf /usr/share/zoneinfo/\$TZ /etc/localtime && echo \$TZ > /etc/timezone
ARG package="pacstall"

RUN dpkg-divert --rename --remove /usr/bin/man
RUN if [[ \$(dpkg --print-architecture) == "amd64" ]]; then \
dpkg --add-architecture i386; \
fi && \
apt-get update && \
apt-get dist-upgrade -y && \
apt-get install wget curl git sudo nano ca-certificates util-linux adduser -y --fix-missing --no-install-recommends && \
apt-get install wget curl git sudo nano ca-certificates util-linux adduser man-db -y --fix-missing --no-install-recommends && \
apt-get clean && \
apt-get autoclean && \
apt-get autoremove -y
Expand Down