added more stuff
This commit is contained in:
parent
643998809b
commit
7302ae8539
11
Dockerfile
11
Dockerfile
|
@ -28,13 +28,10 @@ RUN set -ex && \
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Add pipenv
|
RUN pip3 install --upgrade pip && \
|
||||||
RUN pip install pipenv==2021.5.29
|
pip3 install -U --no-cache-dir -r ./requirements.txt
|
||||||
|
|
||||||
# Install dependencies
|
|
||||||
RUN pipenv install
|
|
||||||
|
|
||||||
# Added needed folder for plane-notify process
|
# 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
|
CMD python3 /plane-notify/__main__.py
|
|
@ -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
|
Loading…
Reference in New Issue