|
FROM python:3.10
|
|
WORKDIR /app/plexwasher
|
|
|
|
# Install the application dependencies
|
|
COPY config.ini ./
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy in the source code
|
|
COPY plexwasher.py ./
|
|
COPY config.ini ./
|
|
|
|
CMD ./plexwasher.py -g |