46d91fdf28
This reverts commit df7621dee8477c2db97bc5d4b9e1918b6b98684f.
64 lines
No EOL
2.6 KiB
Docker
64 lines
No EOL
2.6 KiB
Docker
FROM ubuntu:cosmic
|
|
|
|
ENV LC_ALL en_GB.UTF-8
|
|
ENV LANG en_GB.UTF-8
|
|
ENV LANGUAGE en_GB.UTF-8
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN echo "APT::Acquire::Retries=16;" >> /etc/apt/apt.conf.d/99_retries
|
|
RUN apt-get update
|
|
RUN apt-get install -y --fix-missing sudo apt-utils aptitude dirmngr locales
|
|
RUN apt-get -y upgrade
|
|
|
|
RUN sudo locale-gen en_GB.UTF-8
|
|
RUN dpkg-reconfigure locales
|
|
|
|
RUN apt-get -y install whois zsh tmux atop aria2 curl pv python-dev ruby-dev dkms linux-kernel-headers golang
|
|
RUN apt-get -y --fix-missing install lm-sensors mercurial git
|
|
RUN apt-get -y --fix-missing install build-essential cmake intltool
|
|
RUN apt-get -y --fix-missing install xorg
|
|
RUN apt-get -y --fix-missing install meld
|
|
RUN apt-get -y --fix-missing install gajim
|
|
RUN apt-get -y --fix-missing install lm-sensors
|
|
RUN apt-get -y --fix-missing install terminator
|
|
RUN apt-get -y --fix-missing install python3-pip python-pip
|
|
RUN apt-get -y --fix-missing install freecad
|
|
RUN apt-get -y --fix-missing install keepass2
|
|
RUN apt-get -y --fix-missing install libncurses5-dev libgnome2-dev libgnomeui-dev libgtk2.0-dev libatk1.0-dev libbonoboui2-dev libcairo2-dev libx11-dev libxpm-dev libxt-dev
|
|
RUN apt-get -y --fix-missing install gsmartcontrol redshift gtk-redshift gparted solaar glances silversearcher-ag retext kdiff3
|
|
|
|
RUN mkdir -p /root/dev/
|
|
# vim
|
|
RUN git clone https://github.com/vim/vim.git --recursive /root/dev/vim
|
|
RUN cd /root/dev/vim && ./configure --with-features=huge \
|
|
--enable-multibyte \
|
|
--enable-rubyinterp \
|
|
--enable-python3interp=yes \
|
|
--enable-luainterp \
|
|
--enable-gui=no \
|
|
--enable-cscope
|
|
RUN cd /root/dev/vim && make -j`nproc`
|
|
RUN cd /root/dev/vim && make install
|
|
|
|
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
|
|
RUN curl -sSL https://get.rvm.io | bash
|
|
RUN bash -c "source /etc/profile.d/rvm.sh && rvm install ruby --disable-binary"
|
|
|
|
RUN curl -sSf https://sh.rustup.rs > /tmp/blastoff.sh
|
|
RUN chmod a+x /tmp/blastoff.sh
|
|
RUN /tmp/blastoff.sh -y
|
|
RUN rm -f /tmp/blastoff.sh
|
|
|
|
RUN /root/.cargo/bin/rustup update
|
|
RUN /root/.cargo/bin/rustup install stable
|
|
RUN /root/.cargo/bin/rustup install nightly
|
|
RUN /root/.cargo/bin/rustup default stable
|
|
|
|
RUN /root/.cargo/bin/rustup component add rls --toolchain stable
|
|
RUN /root/.cargo/bin/rustup component add clippy --toolchain stable
|
|
RUN /root/.cargo/bin/rustup component add rustfmt --toolchain stable
|
|
RUN /root/.cargo/bin/rustup component add rust-analysis --toolchain stable
|
|
RUN /root/.cargo/bin/rustup component add rust-src --toolchain stable
|
|
|
|
RUN /root/.cargo/bin/cargo install cargo-update rustsym ripgrep fd-find genpass
|
|
RUN /root/.cargo/bin/cargo install-update -a |