Merge pull request 'fix' (#3) from master into dev

Reviewed-on: #3
This commit is contained in:
emmatveev 2025-05-31 13:48:48 +03:00
commit f0c1f1a935
2 changed files with 16 additions and 0 deletions

View File

@ -6,4 +6,9 @@ RUN python3 -m venv venv
RUN venv/bin/python3 -m ensurepip RUN venv/bin/python3 -m ensurepip
RUN venv/bin/pip3 install --no-cache --upgrade pip setuptools RUN venv/bin/pip3 install --no-cache --upgrade pip setuptools
RUN mkdir /code
WORKDIR /code
COPY requirements.txt requirements.txt
RUN venv/bin/pip install requirements.txt
ENTRYPOINT [ "venv/bin/python3", "main.py" ] ENTRYPOINT [ "venv/bin/python3", "main.py" ]

11
requirements.txt Normal file
View File

@ -0,0 +1,11 @@
argon2-cffi==23.1.0
argon2-cffi-bindings==21.2.0
certifi==2025.4.26
cffi==1.17.1
dnspython==2.7.0
minio==7.2.15
pycparser==2.22
pycryptodome==3.23.0
pymongo==4.13.0
typing_extensions==4.13.2
urllib3==2.4.0