Add dockerfile
This commit is contained in:
parent
d472f7b8c3
commit
bceaa79c9b
2 changed files with 17 additions and 4 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
FROM python:3.10
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install ffmpeg libsm6 libxext6 -y
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY . /app
|
||||
RUN pip install --no-cache-dir .
|
||||
|
||||
CMD [ "python", "run.py" ]
|
|
@ -13,6 +13,7 @@ asyncio-extras==1.3.2; python_version >= "3.6"
|
|||
asyncpraw==7.5.0; python_version >= "3.6"
|
||||
asyncprawcore==2.3.0; python_version >= "3.6"
|
||||
attrs==21.4.0; python_version >= "3.10" and python_full_version < "3.0.0" and python_version < "4.0" or python_version >= "3.10" and python_version < "4.0" and python_full_version >= "3.5.0"
|
||||
beautifulsoup4==4.11.1; python_full_version >= "3.6.0"
|
||||
blessed==1.19.1; python_version >= "3.8" and python_version < "4.0"
|
||||
caio==0.9.5; python_version >= "3.5" and python_version < "4"
|
||||
certifi==2021.10.8; python_full_version >= "3.7.0" and python_version >= "3.10" and (python_version >= "3.10" and python_full_version < "3.0.0" or python_full_version >= "3.6.0" and python_version >= "3.10") and python_version < "4.0"
|
||||
|
@ -22,7 +23,7 @@ codefind==0.1.3; python_version >= "3.8" and python_version < "4.0"
|
|||
colorama==0.4.4; python_version >= "3.10" and python_full_version < "3.0.0" and python_version < "4.0" and platform_system == "Windows" or python_version >= "3.10" and python_version < "4.0" and platform_system == "Windows" and python_full_version >= "3.5.0"
|
||||
commonmark==0.9.1; python_full_version >= "3.6.3" and python_full_version < "4.0.0" and python_version >= "3.10" and python_version < "4.0"
|
||||
dateparser==1.1.1; python_version >= "3.5"
|
||||
discord-typings==0.4.0; python_version >= "3.10" and python_version < "4.0"
|
||||
discord-typings==0.5.1; python_version >= "3.10" and python_version < "4.0"
|
||||
distro==1.7.0; python_version >= "3.6"
|
||||
frozenlist==1.3.0; python_version >= "3.10" and python_version < "4.0"
|
||||
funcsigs==1.0.2
|
||||
|
@ -33,12 +34,12 @@ idna==3.3; python_full_version >= "3.7.0" and python_version >= "3.10" and (pyth
|
|||
importlib-metadata==4.11.4; python_version >= "3.7" and python_version < "4.0"
|
||||
jarvis-core @ git+https://git.zevaryx.com/stark-industries/jarvis/jarvis-core.git@main ; python_version >= "3.10" and python_version < "4.0"
|
||||
jinxed==1.2.0; python_version >= "3.8" and python_version < "4.0" and platform_system == "Windows"
|
||||
jurigged==0.5.2; python_version >= "3.8" and python_version < "4.0"
|
||||
jurigged==0.5.3; python_version >= "3.8" and python_version < "4.0"
|
||||
marshmallow==3.16.0; python_version >= "3.10" and python_version < "4.0"
|
||||
mongoengine==0.23.1; python_version >= "3.6"
|
||||
motor==2.5.1; python_version >= "3.10" and python_version < "4.0" and python_full_version >= "3.5.2"
|
||||
multidict==6.0.2; python_version >= "3.10" and python_version < "4.0"
|
||||
naff==1.7.1; python_version >= "3.10"
|
||||
naff==1.11.1; python_version >= "3.10"
|
||||
nafftrack @ git+https://github.com/artem30801/nafftrack.git@master ; python_version >= "3.10" and python_version < "4.0"
|
||||
nanoid==2.0.0; python_version >= "3.10" and python_version < "4.0"
|
||||
nest-asyncio==1.5.5; python_version >= "3.5"
|
||||
|
@ -73,11 +74,12 @@ rich==12.4.4; python_full_version >= "3.6.3" and python_full_version < "4.0.0"
|
|||
rook==0.1.175
|
||||
six==1.16.0; python_version >= "3.8" and python_full_version < "3.0.0" and python_version < "4.0" or python_full_version >= "3.3.0" and python_version >= "3.8" and python_version < "4.0"
|
||||
smmap==5.0.0; python_version >= "3.7"
|
||||
soupsieve==2.3.2.post1; python_version >= "3.6" and python_full_version >= "3.6.0"
|
||||
thefuzz==0.19.0
|
||||
tomli==2.0.1; python_version >= "3.10" and python_version < "4.0"
|
||||
tqdm==4.64.0; python_version >= "3.7" and python_full_version < "3.0.0" and python_version < "4.0" or python_version >= "3.7" and python_version < "4.0" and python_full_version >= "3.4.0"
|
||||
tweepy==4.10.0; python_version >= "3.7"
|
||||
typing-extensions==4.2.0; python_version >= "3.10"
|
||||
typing-extensions==4.3.0; python_version >= "3.10"
|
||||
tzdata==2022.1; platform_system == "Windows" and python_version >= "3.6" and (python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.6.0" and python_version >= "3.6")
|
||||
tzlocal==4.2; python_version >= "3.6"
|
||||
ulid-py==1.1.0
|
||||
|
|
Loading…
Add table
Reference in a new issue