Files
Somdev Sangwan 6c5fa8a003 2.0.0
2026-05-02 01:46:00 +05:30

12 lines
192 B
Docker

FROM python:3.12-slim
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir . \
&& python -m playwright install --with-deps chromium
ENTRYPOINT ["wappalyzer"]