12 lines
251 B
Text
12 lines
251 B
Text
|
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/publish_active_windows.py", "--config", "/config/config.conf" ]
|