From 7892f9323846cd6f0acf616bd2a884afc56d3cbe Mon Sep 17 00:00:00 2001 From: Jackson Delahunt Date: Wed, 3 May 2023 13:34:50 +1000 Subject: [PATCH] remove-unity-hub-add-warpd --- docker/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 4f149e7..66ab2f8 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -388,12 +388,6 @@ RUN apt-get update -qq && \ # Install tldr RUN pip3 install --user tldr -# Install unity hub -RUN sh -c 'echo "deb https://hub.unity3d.com/linux/repos/deb stable main" > /etc/apt/sources.list.d/unityhub.list' && \ - wget -qO - https://hub.unity3d.com/linux/keys/public | apt-key add - && \ - apt-get update -qq && \ - apt-get install -qq unityhub - # Install vs code, vs live share dependencies, shfmt extension dependency, and vs-wal RUN wget -O code.deb -nv https://go.microsoft.com/fwlink/?LinkID=760868 && \ apt-get install -qq ./code.deb && \ @@ -408,6 +402,12 @@ RUN apt-get update -qq && \ git clone --depth 1 https://github.com/reorr/warnai /opt/warnai && \ sed -i '/notify-send/d' /opt/warnai/warnai +# Install warpd +RUN git clone https://github.com/rvaiya/warpd /opt/warpd && \ + cd /opt/warpd && \ + make && \ + make install + # Install yarn RUN curl -fsSL https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ echo "deb https://dl.yarnpkg.com/debian stable main" | tee /etc/apt/sources.list.d/yarn.list && \