Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Swaggeroo committed Jan 7, 2024
1 parent 28a5b8c commit dd58dbe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ WORKDIR /usr/src/app
# install dependencies from requirements.txt
COPY src/app.py .

ENV PYTHONUNBUFFERED=1

RUN mkdir ./data

RUN pip install python-bring-api gkeepapi schedule gpsoauth==1.0.2 urllib3==1.25.1

# start app
CMD [ "python", "./app.py" ]
CMD [ "python", "-u", "./app.py" ]

0 comments on commit dd58dbe

Please sign in to comment.