Pip freeze requirements
This commit is contained in:
parent
129e21d1b1
commit
4176666cb2
|
|
@ -1,6 +1,7 @@
|
|||
FROM python:3.7
|
||||
WORKDIR /app
|
||||
COPY requirements.txt ./
|
||||
# We use requirements_freezed in order to ensure reproductible builds
|
||||
COPY requirements_freezed.txt ./requirements.txt
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
COPY ./ChannelsConfigFile/ ./ChannelsConfigFile/
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
# Generated by pip freeze on 09 Feb 2021
|
||||
aiohttp==3.6.3
|
||||
async-timeout==3.0.1
|
||||
attrs==20.3.0
|
||||
chardet==3.0.4
|
||||
discord.py==1.6.0
|
||||
idna==2.10
|
||||
multidict==4.7.6
|
||||
typing-extensions==3.7.4.3
|
||||
yarl==1.5.1
|
||||
Loading…
Reference in New Issue