mirror of
https://github.com/s0md3v/wappalyzer-next.git
synced 2026-06-19 07:35:19 +00:00
12 lines
192 B
Docker
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"]
|