From 7302ae85396acb00cfae9cbaec60188651e0e155 Mon Sep 17 00:00:00 2001 From: timogoosen Date: Wed, 27 Apr 2022 15:36:38 +0200 Subject: [PATCH] added more stuff --- Dockerfile | 11 ++++------- requirements.txt | 14 ++++++++++++++ 2 files changed, 18 insertions(+), 7 deletions(-) create mode 100644 requirements.txt diff --git a/Dockerfile b/Dockerfile index 851fbf8..a477612 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,13 +28,10 @@ RUN set -ex && \ -# Add pipenv -RUN pip install pipenv==2021.5.29 - -# Install dependencies -RUN pipenv install +RUN pip3 install --upgrade pip && \ + pip3 install -U --no-cache-dir -r ./requirements.txt # Added needed folder for plane-notify process -RUN mkdir /home/plane-notify +RUN mkdir -p /home/plane-notify -CMD pipenv run python /plane-notify/__main__.py \ No newline at end of file +CMD python3 /plane-notify/__main__.py \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..6fc2eb5 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,14 @@ +# requirements.txt +colorama +geopy +tabulate +pytz +pillow +tweepy +pushbullet.py +discord-webhook +selenium +#opensky-api = {editable = true, git = "https://github.com/openskynetwork/opensky-api.git", subdirectory = "python"} +webdriver-manager +shapely +python-telegram-bot \ No newline at end of file