Files
thewhiteh4t b00e257f61 dockerfile updated
Former-commit-id: 7597f9ccaeefb86e46fe35a7dfa9dc82c9c2babc
2021-08-10 22:38:21 +05:30

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