File tree Expand file tree Collapse file tree 5 files changed +7
-40
lines changed Expand file tree Collapse file tree 5 files changed +7
-40
lines changed Original file line number Diff line number Diff line change @@ -153,12 +153,6 @@ RUN apt-get update --quiet && apt-get install --yes \
153
153
docker-ce-cli \
154
154
packer \
155
155
terraform \
156
- buildah \
157
- conmon \
158
- containernetworking-plugins \
159
- crun \
160
- podman \
161
- skopeo \
162
156
fish \
163
157
unzip \
164
158
zstd && \
@@ -172,6 +166,12 @@ RUN apt-get update --quiet && apt-get install --yes \
172
166
RUN curl -L https://github.com/cli/cli/releases/download/v2.14.7/gh_2.14.7_linux_amd64.deb -o gh.deb && \
173
167
dpkg -i gh.deb
174
168
169
+ # Install Lazygit
170
+ # See https://github.com/jesseduffield/lazygit#ubuntu
171
+ RUN LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | grep '"tag_name":' | sed -E 's/.*"v*([^"]+)".*/\1 /' ) && \
172
+ curl -Lo lazygit.tar.gz "https://github.com/jesseduffield/lazygit/releases/latest/download/lazygit_${LAZYGIT_VERSION}_Linux_x86_64.tar.gz" && \
173
+ tar xf lazygit.tar.gz -C /usr/local/bin lazygit
174
+
175
175
# Install frontend utilities
176
176
RUN apt-get update && \
177
177
# Node.js (from nodesource) and Yarn (from yarnpkg)
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ resource "coder_agent" "dev" {
33
33
curl -fsSL https://code-server.dev/install.sh | sh
34
34
code-server --auth none --port 13337 &
35
35
sudo service docker start
36
- if [ -f ~/personalize ]; then ~/personalize 2>&1 | tee ~/.personalize.log; fi
36
+ coder dotfiles -y 2>&1 | tee ~/.personalize.log
37
37
EOF
38
38
}
39
39
You can’t perform that action at this time.
0 commit comments