remove-cloudstorage

This commit is contained in:
Jackson Delahunt 2022-12-04 00:06:52 +11:00
parent faa363fbdd
commit 4f07aab74c

View file

@ -185,29 +185,6 @@ RUN apt-get update -qq && \
wget -O /etc/fonts/local.conf -nv https://raw.githubusercontent.com/jessfraz/dockerfiles/master/chrome/stable/local.conf && \
groupadd --system chrome
# Install cloudstorage
RUN apt-get update -qq && \
apt-get install -qq \
autoconf \
fuse3 \
libcurl4-openssl-dev \
libfuse3-dev \
libjsoncpp-dev \
libmicrohttpd-dev \
libtinyxml2-dev \
libtool \
pkg-config && \
git clone --depth 1 https://github.com/cloud-computer/libcloudstorage && \
cd libcloudstorage && \
./bootstrap && \
./configure --with-curl --with-microhttpd --with-fuse && \
make -j$(nproc) && \
make install && \
echo user_allow_other >> /etc/fuse.conf && \
mkdir -p $HOME/.config/cloudstorage && \
mkdir $HOME/cloudstorage && \
rm -rf ../libcloudstorage
# Install cmatrix
RUN apt-get install -qq libncurses5-dev && \
git clone --depth 1 https://github.com/abishekvashok/cmatrix && \