-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Many updates and bug fixes. Removed some unneeded functions and expanded on a few. Changed to token credentials.
- Loading branch information
Showing
4 changed files
with
461 additions
and
340 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Use the official Python base image | ||
FROM python:3.11.2 | ||
|
||
# Install FFmpeg | ||
RUN apt-get update && \ | ||
apt-get install -y ffmpeg | ||
|
||
# Set the working directory | ||
WORKDIR /app | ||
|
||
# Copy the requirements file into the container | ||
COPY requirements.txt . | ||
|
||
# Install the dependencies | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
|
||
# Copy the entire project into the container | ||
COPY . . | ||
|
||
# Expose the port the bot will use (optional) | ||
EXPOSE 32400 | ||
|
||
# Run the bot script | ||
CMD ["python", "plex_music_bot.py"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.