This commit is contained in:
Jackson Delahunt 2019-02-22 20:30:24 +11:00
parent 0ca7ba18e7
commit 1607f727f4

View file

@ -3,7 +3,6 @@ USER root
# Install user utilities
RUN apt-get update -qq && apt-get install -qq --fix-broken \
acpi \
alpine \
alsa-utils \
arandr \
@ -40,11 +39,13 @@ RUN wget -O polo.deb -nv https://github.com/teejee2008/polo/releases/download/v1
dpkg -i polo.deb || apt-get install -qq --fix-broken && \
rm polo.deb
# Install vs code
# Install vs code, vs live share dependencies, and shfmt extension dependency
RUN wget -O code.deb -nv https://go.microsoft.com/fwlink/?LinkID=760868 && \
apt-get install -qq ./code.deb && \
rm code.deb && \
apt-get install -qq libicu[0-9][0-9] libkrb5-3 zlib1g libsecret-1-0 desktop-file-utils x11-utils # vs live share dependencies
apt-get install -qq libicu[0-9][0-9] libkrb5-3 zlib1g libsecret-1-0 desktop-file-utils x11-utils && \
wget -O /usr/local/bin/shfmt -nv https://github.com/mvdan/sh/releases/download/v2.6.3/shfmt_v2.6.3_linux_amd64 && \
chmod +x /usr/local/bin/shfmt
# Install chrome
RUN apt-get update -qq && apt-get install -qq \