This commit is contained in:
root
2025-12-14 10:39:18 +03:00
commit 639f4e2b4e
179 changed files with 21065 additions and 0 deletions

16
darkbazaar/Dockerfile.cleaner Executable file
View File

@@ -0,0 +1,16 @@
FROM python:3.10-slim-bookworm
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY src/ ./src/
COPY docker-entrypoint.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
# Install cron
RUN apt-get update && apt-get install -y cron procps dash
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["cron", "-f"]