* Fixed YouTube * Fixed Shutdown * Button In asst Fixed * Fixed paste & open * Anime * Minor bugs Co-authored-by: Aditya <xditya@ultroid.tech> Co-authored-by: Error <error@notavailable.live> Co-authored-by: Anonymous <69723581+New-dev0@users.noreply.github.com>
20 lines
604 B
Docker
20 lines
604 B
Docker
# Ultroid - UserBot
|
|
# Copyright (C) 2021 TeamUltroid
|
|
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
|
|
# PLease read the GNU Affero General Public License in <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
|
|
|
|
FROM programmingerror/ultroid:b0.1
|
|
|
|
ENV TZ=Asia/Kolkata
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
RUN git clone https://github.com/TeamUltroid/Ultroid.git /root/TeamUltroid/
|
|
|
|
WORKDIR /root/TeamUltroid/
|
|
|
|
RUN pip3 install --no-cache-dir -r requirements.txt
|
|
|
|
RUN npm install -g npm@7.16.0 -g
|
|
RUN npm install
|
|
RUN npm run build
|