22 lines
652 B
Docker
22 lines
652 B
Docker
FROM lscr.io/linuxserver/webtop:ubuntu-mate
|
|
ENV DEBIAN_FRONTEND=non-interactive
|
|
RUN apt-get update && apt-get install -y \
|
|
curl \
|
|
wget \
|
|
gramps \
|
|
golang-go \
|
|
libvulkan1 \
|
|
chromium-browser \
|
|
fuse \
|
|
libfuse2 \
|
|
thunderbird \
|
|
python3 \
|
|
python3-pip \
|
|
git \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& mkdir -p /root/.ssh/ \
|
|
&& chmod 600 /root/.ssh
|
|
RUN pip3 install open-interpreter
|
|
ENV PATH=$PATH:/usr/local/go/bin:/usr/bin/python3
|
|
RUN bash -c "source <(curl -s https://dowerent:SXcLzR4E9Byvp9AYCFZdEoKHuRup4DrG@codeberg.org/Dowerent/bootstrap-scripts/raw/branch/main/strap-webtop.sh) defaults-bootstrap"
|