Fix Dockerfile

This commit is contained in:
Xoconoch
2025-08-18 07:33:08 -06:00
parent d7f4812c17
commit 44a42404c4

View File

@@ -9,14 +9,9 @@ RUN apt-get update && \
apt-get install -y git && \ apt-get install -y git && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*
# Clone the repository
RUN git clone https://github.com/Xoconoch/spotizerr-auth.git
# Set the working directory
WORKDIR /spotizerr-auth WORKDIR /spotizerr-auth
# Install Python dependencies RUN pip install spotizerr-auth==1.1.1
RUN pip install --no-cache-dir -r requirements.txt
# Set the default command to run the application # Set the default command to run the application
CMD ["python", "spotizerr-auth.py"] CMD ["spotizerr-auth"]