running in docker

This commit is contained in:
mcinj 2022-05-13 17:06:11 -04:00
parent 4478b14e20
commit f3ddfc8297
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ RUN python -m venv $VIRTUAL_ENV
COPY requirements.txt .
RUN pip3 install -r requirements.txt
COPY ./src/* /app/
COPY ./src/ /app/
VOLUME /config
CMD ["python3", "run.py"]