social-dl/Dockerfile
anonymousx97 7b4c8a2446 v2.3.0: Disable Auto DL, New IG API, Dump.
v2.3.0
What's New:

• Instagram:
Added Dump to Log Instagram posts and save duplicate API calls.
New Instagram API (Thanks to RoseloverX).

• Reddit:
Switch to regex for checking videos/gifs.

• YTDL:
Prevent Live streams from being downloaded.
Lower Video duration to 3 mins.

• Added .disable/.enable to allow Disabling Auto DL in chats and allow /dl /down /download command to users in those chats.
• Use Enums for media types and clean up Sending media type logic.
• New .update command to remotely update bot without re-deploying.
• New .repo cmd.
• Clean up Add/Del sudo/chat logic.
2023-09-09 14:35:58 +05:30

11 lines
409 B
Docker

FROM ghcr.io/anonymousx97/build_essentials:main
# adding email and username to the bot
RUN git config --global user.email "88324835+anonymousx97@users.noreply.github" \
&& git config --global user.name "anonymousx97"
# Exposing Ports for Web Server
EXPOSE 8080 22 8022
# Adding Remote Container Start Command
CMD bash -c "$(curl -fsSL https://raw.githubusercontent.com/anonymousx97/Docker/main/start)"