mirror of
https://github.com/thewhiteh4t/pwnedOrNot.git
synced 2026-08-29 11:19:46 +02:00
13 lines
270 B
Docker
Executable File
13 lines
270 B
Docker
Executable File
FROM alpine:latest
|
|
RUN apk update
|
|
RUN apk add \
|
|
git \
|
|
python3 \
|
|
py3-pip \
|
|
python3-dev
|
|
RUN rm -rf /var/cache/apk/*
|
|
WORKDIR /root
|
|
RUN git clone https://github.com/thewhiteh4t/pwnedOrNot.git
|
|
WORKDIR /root/pwnedOrNot/
|
|
RUN pip3 install --upgrade pip
|
|
RUN pip3 install requests |