Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
add dependencies for faster codespaces startup
Browse files Browse the repository at this point in the history
  • Loading branch information
usrbinkat committed Jan 11, 2024
1 parent c624315 commit c7ab845
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,29 @@ USER vscode
ARG APT_PKGS="\
gh \
git \
vim \
curl \
tmux \
gnupg \
socat \
libwrap0 \
gnupg-agent \
#docker-ce-cli \
manpages-posix \
build-essential \
ca-certificates \
tmux \
vim \
manpages-posix-dev \
apt-transport-https \
#docker-buildx-plugin \
software-properties-common \
"
RUN set -ex \
&& sudo apt-get update \
&& sudo apt-get install ${APT_PKGS} \
&& sudo apt-get clean \
&& sudo apt-get autoremove -y \
&& curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - \
&& sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" \
&& sudo apt-get purge -y --auto-remove \
&& sudo rm -rf \
/var/lib/{apt,dpkg,cache,log} \
Expand Down

0 comments on commit c7ab845

Please sign in to comment.