Pip freeze requirements

This commit is contained in:
Elnath 2021-02-09 23:29:13 +01:00
parent 129e21d1b1
commit 4176666cb2
2 changed files with 12 additions and 1 deletions

View File

@ -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/

10
requirements_freezed.txt Normal file
View File

@ -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