Prepare development environment

This commit is contained in:
Alex Kotov 2023-01-07 23:51:14 +04:00
parent 0a5160c30e
commit 2f7e43b461
No known key found for this signature in database
GPG Key ID: 553C0EBBEB5D5F08
2 changed files with 8 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM ubuntu:22.10
RUN mkdir /app
WORKDIR /app
RUN apt-get update --yes
RUN apt-get install --yes python3 python3-pip
COPY requirements.txt /app
RUN pip3 install -r requirements.txt

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
matrix-nio==0.20.1