Skip to content

Commit

Permalink
fix: add apt pkgs to Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Vladislav Doster <mvdoster@gmail.com>
  • Loading branch information
vladdoster committed Dec 5, 2022
1 parent 496f45c commit b96d148
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,34 @@ ENV DEBIAN_FRONTEND noninteractive
ENV TERM xterm-256color

RUN apt-get update \
&& apt-get --yes install --no-install-recommends \
apt-utils autoconf automake \
bsdmainutils bsdutils build-essential \
&& apt-get install -y --no-install-recommends software-properties-common gnupg-agent \
&& add-apt-repository -y ppa:git-core/ppa \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
acl apt-utils autoconf automake \
bsdmainutils bsdutils build-essential bzip2 \
ca-certificates cmake curl \
curl \
debianutils \
figlet file \
g++ gcc git golang \
g++ gcc git golang gawk \
jq \
less libevent-dev libtree-sitter-dev libz-dev locales lua5.1 luarocks \
make man-db \
ncurses-base ncurses-bin ncurses-dev ncurses-term \
pkg-config python3-pip python3 python3-dev \
ncurses-base ncurses-bin ncurses-dev ncurses-term netbase \
openssh-client \
patch pkg-config python3 python3-dev python3-pip \
stow subversion sudo \
tar tree tzdata \
unzip util-linux-locales \
unzip util-linux-locales uuid-runtime \
wget \
xz-utils \
zsh
zsh \
&& if [ "$(. /etc/lsb-release; echo "${DISTRIB_RELEASE}" | cut -d. -f1)" -ge 18 ]; then apt-get install gpg; fi \
&& apt-get remove --purge -y software-properties-common \
&& apt-get autoremove --purge -y \
&& rm -rf /var/lib/apt/lists/* \
&& localedef -i en_US -f UTF-8 en_US.UTF-8

RUN useradd \
--create-home \
Expand Down

0 comments on commit b96d148

Please sign in to comment.