mirror of
https://github.com/pacnpal/simpleguardhome.git
synced 2025-12-20 04:21:13 -05:00
46 lines
1.2 KiB
Docker
46 lines
1.2 KiB
Docker
FROM python:3.11-slim-bullseye
|
|
|
|
WORKDIR /app
|
|
|
|
# Install essential system packages
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
curl && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Python packages
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy the source code
|
|
COPY . .
|
|
|
|
# Clean any previous installations and install the package
|
|
RUN pip uninstall -y simpleguardhome || true && \
|
|
pip install -e . && \
|
|
pip show simpleguardhome && \
|
|
python3 -c "import simpleguardhome; print('Package found at:', simpleguardhome.__file__)"
|
|
|
|
# Set up health check
|
|
COPY healthcheck.py /usr/local/bin/
|
|
RUN chmod +x /usr/local/bin/healthcheck.py
|
|
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
|
CMD python3 /usr/local/bin/healthcheck.py
|
|
|
|
# Environment setup
|
|
ENV ADGUARD_HOST="http://localhost" \
|
|
ADGUARD_PORT=3000
|
|
|
|
# Expose application port
|
|
EXPOSE 8000
|
|
|
|
# Copy and set up entrypoint
|
|
COPY docker-entrypoint.sh /usr/local/bin/
|
|
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
|
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
|
|
# Mark rules_backup as a volume
|
|
VOLUME ["/app/rules_backup"] |