mirror of
https://github.com/caronc/apprise-api.git
synced 2024-12-12 18:00:51 +01:00
56 lines
1.7 KiB
Docker
56 lines
1.7 KiB
Docker
ARG ARCH
|
|
FROM ${ARCH}python:3.11-slim
|
|
|
|
# set version label
|
|
ARG BUILD_DATE
|
|
ARG VERSION
|
|
LABEL build_version="Apprise API version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
|
LABEL maintainer="Chris-Caron"
|
|
|
|
# set environment variables
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
ENV APPRISE_CONFIG_DIR /config
|
|
ENV APPRISE_ATTACH_DIR /attach
|
|
ENV APPRISE_PLUGIN_PATHS /plugin
|
|
|
|
# Install nginx, supervisord, and cryptography dependencies
|
|
RUN apt-get update -qq && \
|
|
apt-get install -y -qq nginx supervisor \
|
|
build-essential libffi-dev libssl-dev cargo pkg-config python3-dev rustc
|
|
|
|
# Cryptography documents that the latest version of pip3 must always be used
|
|
RUN pip3 install --upgrade pip
|
|
|
|
# Install requirements and gunicorn
|
|
COPY ./requirements.txt /etc/requirements.txt
|
|
RUN pip3 install --no-cache-dir -q -r /etc/requirements.txt gunicorn --no-binary cryptography
|
|
|
|
# Copy our static content in place
|
|
COPY apprise_api/static /usr/share/nginx/html/s/
|
|
|
|
# set work directory
|
|
WORKDIR /opt/apprise
|
|
|
|
# Copy over Apprise API
|
|
COPY apprise_api/ webapp
|
|
|
|
# Cleanup
|
|
RUN apt-get remove -y -qq build-essential libffi-dev libssl-dev python3-dev cargo rustc pkg-config && \
|
|
apt-get clean autoclean && \
|
|
apt-get autoremove --yes && \
|
|
rm -rf /var/lib/{apt,dpkg,cache,log}/
|
|
|
|
# Configuration Permissions (to run nginx as a non-root user)
|
|
RUN umask 0002 && \
|
|
mkdir -p /attach /config /plugin /run/apprise && \
|
|
chown www-data:www-data -R /run/apprise /var/lib/nginx /attach /config /plugin
|
|
|
|
# Handle running as a non-root user (www-data is id/gid 33)
|
|
USER www-data
|
|
VOLUME /config
|
|
VOLUME /attach
|
|
VOLUME /plugin
|
|
EXPOSE 8000
|
|
CMD ["/usr/bin/supervisord", "-c", "/opt/apprise/webapp/etc/supervisord.conf"]
|