nullcon2023-chall-babyrand

Python PRNG prediction challenge for NullCon 2023 Berlin
git clone https://git.sinitax.com/sinitax/nullcon2023-chall-babyrand
Log | Files | Refs | sfeed.txt

Dockerfile (262B)


      1FROM ubuntu:latest
      2
      3RUN apt update && apt install -y python3 python3-pip socat
      4
      5WORKDIR /app
      6
      7COPY requirements.txt .
      8RUN pip install --no-cache-dir -r requirements.txt
      9
     10COPY app.py .
     11RUN chmod +x app.py
     12
     13CMD [ "socat", "TCP-LISTEN:9000,fork", "EXEC:./app.py" ]