mirror of
https://github.com/thewhiteh4t/pwnedOrNot.git
synced 2026-08-17 18:35:40 +02:00
12 lines
213 B
Docker
Executable File
12 lines
213 B
Docker
Executable File
FROM alpine:latest
|
|
RUN apk update
|
|
RUN apk add \
|
|
python3 \
|
|
py3-pip \
|
|
python3-dev
|
|
RUN rm -rf /var/cache/apk/*
|
|
WORKDIR /root
|
|
COPY . /root/pwnedornot/
|
|
WORKDIR /root/pwnedornot/
|
|
RUN chmod +x install.sh
|
|
RUN ./install.sh |