Initial commit

This commit is contained in:
KKlochko
2023-06-16 16:00:33 +02:00
committed by GitHub
commit 2cc416ac00
10 changed files with 131 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM python:3.10-slim
WORKDIR ./code
COPY ./requirements.txt .
RUN pip install python-olm --extra-index-url https://gitlab.matrix.org/api/v4/projects/27/packages/pypi/simple
RUN pip install -r requirements.txt
COPY . .