First commit

This commit is contained in:
BlessedRebuS
2025-12-14 19:08:01 +01:00
parent 5e46841858
commit 076b2de584
43 changed files with 3410 additions and 2 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM python:3.11-slim
LABEL org.opencontainers.image.source=https://github.com/BlessedRebuS/Krawl
WORKDIR /app
COPY src/ /app/src/
COPY wordlists.json /app/
RUN useradd -m -u 1000 krawl && \
chown -R krawl:krawl /app
USER krawl
EXPOSE 5000
ENV PYTHONUNBUFFERED=1
CMD ["python3", "src/server.py"]