Files
krawl.es/Dockerfile

24 lines
418 B
Docker
Raw Normal View History

2025-12-14 19:08:01 +01:00
FROM python:3.11-slim
LABEL org.opencontainers.image.source=https://github.com/BlessedRebuS/Krawl
WORKDIR /app
# Install Python dependencies
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
2025-12-14 19:08:01 +01:00
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"]