This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM nvidia/cuda:12.1.0-devel-ubuntu18.04 | |
RUN apt update && apt upgrade -y | |
RUN apt install -y git python2.7-dev libssl-dev zlib1g-dev libpcap-dev clang scapy | |
WORKDIR /root/ | |
RUN git clone https://github.com/jpaulmora/pyrit.git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM homeassistant/home-assistant:latest | |
RUN apk update && apk upgrade && apk add alpine-sdk autoconf | |
COPY ./jemalloc /tmp/jemalloc | |
WORKDIR /tmp/jemalloc | |
# --with-lg-page specifies Page size, log2(16384)=14 for 16k pages | |
RUN ./configure --with-lg-page=14 |