Skip to content
Merged
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
18 changes: 9 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,20 @@ USER root
RUN apt-get update \
&& apt-get -y upgrade \
&& apt-get -y install --no-install-recommends \
git \
bzip2 \
ca-certificates \
git \
htop \
python3 \
python3-pip \
neovim \
libdbus-1-3 \
libgomp1 \
libssl3 \
libxcb1 \
nano \
neovim \
nodejs \
npm \
bzip2 \
libssl3 \
libdbus-1-3 \
libxcb1 \
python3 \
python3-pip \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down Expand Up @@ -59,7 +60,6 @@ RUN ~/.cargo/bin/rustup toolchain update
# Install latest Goose CLI
ENV GOOSE_DISABLE_KEYRING=true
RUN curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh | CONFIGURE=false bash
RUN ~/.local/bin/goose update

ENV OPENVSCODE_SERVER_ROOT="/home/.openvscode-server"
ENV OPENVSCODE="${OPENVSCODE_SERVER_ROOT}/bin/openvscode-server"
Expand Down