feat: add bot specific docker images

Migrates over docker images that are required to run specific bots
This commit is contained in:
Softwarenoob
2021-08-06 22:17:06 +03:00
parent 6b1fde7b50
commit 4650340592
9 changed files with 160 additions and 0 deletions

21
bot/sinusbot/Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
FROM ubuntu:18.04
LABEL maintainer="ki2007 <ki2007@damw.eu>" version="1.0"
ENV DEBIAN_FRONTEND noninteractive
# Install Dependencies
RUN apt update \
&& apt upgrade -y \
&& apt install -y ca-certificates less libasound2 libegl1-mesa libglib2.0-0 libnss3 libpci3 libpulse0 libxcursor1 libxslt1.1 libx11-xcb1 libxkbcommon0 locales pulseaudio python sudo x11vnc x11-xkb-utils xvfb iproute2 \
&& useradd -m -d /home/container container
ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8
USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container
COPY ./entrypoint.sh /entrypoint.sh
CMD ["/bin/bash", "/entrypoint.sh"]