File: Dockerfile

package info (click to toggle)
mautrix-python 0.20.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,812 kB
  • sloc: python: 19,103; makefile: 16
file content (4 lines) | stat: -rw-r--r-- 167 bytes parent folder | download
1
2
3
4
FROM python:latest
RUN apt-get update && apt-get install -y libolm-dev rsync
COPY ./requirements.txt /
RUN pip install -r /requirements.txt && rm -f /requirements.txt