dockerfile: add DBPATH

This commit is contained in:
Luna 2022-09-18 14:12:22 -03:00
parent 5a857da5d4
commit ee4ba47831
1 changed files with 1 additions and 0 deletions

View File

@ -5,4 +5,5 @@ RUN pip3 install -Ur ./e621_api_cloner/requirements.txt
RUN touch ./e621_api_cloner/e621.db
EXPOSE 1337
WORKDIR /e621_api_cloner
ENV DBPATH=./e621.db
CMD ["hypercorn", "--access-log", "-", "-b", "0.0.0.0:1337", "e621_api_cloner:app"]