Prepare development environment
This commit is contained in:
parent
0a5160c30e
commit
2f7e43b461
7
Dockerfile
Normal file
7
Dockerfile
Normal 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
1
requirements.txt
Normal file
|
@ -0,0 +1 @@
|
|||
matrix-nio==0.20.1
|
Reference in a new issue