diff --git a/Dockerfile b/Dockerfile index d500667..91db733 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,7 @@ -# Use an official Python runtime as a base image FROM python:3.12-slim -# Install build dependencies and supervisor -RUN apt-get update -y && apt-get install -y gcc python3-dev supervisor +# Install build dependencies +RUN apt-get update -y && apt-get install -y gcc python3-dev # Set the working directory to /app WORKDIR /app @@ -13,8 +12,5 @@ COPY . /app # Install any needed packages specified in requirements.txt RUN pip install --no-cache-dir -r requirements.txt -# Copy the supervisor configuration file -COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf - -# Run supervisor to manage both processes main.py and webapp.py -CMD ["supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"] \ No newline at end of file +# Run main.py when the container launches +CMD ["python", "-u", "main.py"] \ No newline at end of file diff --git a/langs/EN.json b/langs/EN.json index 00dad17..1552ed7 100644 --- a/langs/EN.json +++ b/langs/EN.json @@ -124,7 +124,7 @@ "live": "LIVE", "playlistLoad": " 🎶 Added the playlist **{0}** with `{1}` songs to the queue.", "trackLoad": "Added **[{0}](<{1}>)** by **{2}** (`{3}`) to begin playing.\n", - "trackLoad_pos": "Added **[{0}](<{1}>)** by **{3}** (`{3}`) to the queue at position **{4}**\n", + "trackLoad_pos": "Added **[{0}](<{1}>)** by **{2}** (`{3}`) to the queue at position **{4}**\n", "searchTitle": "Search Query: {0}", "searchDesc": "➥ Platform: {0} **{1}**\n➥ Results: **{2}**\n\n{3}",