Files
pwnedOrNot/Dockerfile
T
2020-06-02 09:54:23 +05:30

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