odi6/Dockerfile

12 lines
233 B
Text
Raw Permalink Normal View History

2025-07-19 11:51:46 +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/odi6.py", "--config", "/config/config.conf" ]