mirror of
https://github.com/caronc/apprise.git
synced 2024-11-21 15:43:27 +01:00
15 lines
374 B
Docker
15 lines
374 B
Docker
# Base
|
|
FROM python:2.7-buster
|
|
RUN apt-get update && \
|
|
apt-get install -y libdbus-1-dev build-essential musl-dev bash
|
|
RUN pip install dbus-python
|
|
|
|
# Apprise Setup
|
|
COPY . /apprise
|
|
ENV PYTHONPATH /apprise
|
|
WORKDIR /apprise
|
|
RUN pip install -r requirements.txt -r dev-requirements.txt
|
|
|
|
# Catalog Construction and Wheel Building
|
|
RUN python setup.py compile_catalog bdist_wheel
|