Skip to content

Instantly share code, notes, and snippets.

View niggowai's full-sized avatar
💭
A relationship is like git. You commit, you merge and you resolve conflicts

niggowai

💭
A relationship is like git. You commit, you merge and you resolve conflicts
View GitHub Profile
@niggowai
niggowai / Dockerfile
Created December 30, 2023 19:41
Pyrit Dockerfile - run pyrit with cuda on new systems
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
@niggowai
niggowai / Dockerfile
Last active November 5, 2023 19:34
compatibility layer for Home-assistant and other containers using jemalloc - dirty
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