android_manager/Dockerfile

12 lines
244 B
Text
Raw Normal View History

2025-07-14 15:01:30 +02:00
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN pip install .
VOLUME config
CMD [ "python", "/usr/local/bin/android_manager.py", "--config", "/config/config.conf" ]