Explicitly specify versions

This commit is contained in:
norohind 2024-05-17 21:47:09 +03:00
parent ed2dfa0133
commit b103494f2a
Signed by: norohind
GPG Key ID: 01C3BECC26FB59E1
3 changed files with 16 additions and 7 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
.idea
*__pycache__
*.sqlite
*.log
model_multi.pt

View File

@ -1,4 +1,4 @@
FROM python:3.11-slim as builder
FROM python:3.10-slim as builder
WORKDIR /app
@ -13,7 +13,7 @@ RUN --mount=type=cache,target=/root/.cache/pip pip install Cython && \
FROM python:3.11-slim
FROM python:3.10-slim
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

View File

@ -1,5 +1,9 @@
discord-py
loguru~=0.6.0
peewee~=3.14.10
PyNaCl
git+https://github.com/aaiyer/rfoo.git
discord-py==2.3.2
loguru==0.7.2
peewee==3.17.5
PyNaCl==1.5.0
git+https://github.com/aaiyer/rfoo.git@1555bd4eed204bb6a33a5e313146a6c2813cfe91
# Cython is setup dependency for rfoo
--index-url https://download.pytorch.org/whl/cpu
torch==2.3.0+cpu
numpy==1.26.4