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