cscg24-adventure

CSCG 2024 Challenge 'Choose Your Own Adventure'
git clone https://git.sinitax.com/sinitax/cscg24-adventure
Log | Files | Refs | sfeed.txt

Dockerfile (787B)


      1FROM ubuntu:jammy-20240125@sha256:bcc511d82482900604524a8e8d64bf4c53b2461868dac55f4d04d660e61983cb
      2
      3# https://github.com/reproducible-containers/repro-sources-list.sh
      4# Sorry for the mess.
      5ADD --checksum=sha256:4e7e6536b206488b2414d1fa2272e8bbf17fbe7d11e5648eb51284c8fa96b0a9 \
      6    https://raw.githubusercontent.com/reproducible-containers/repro-sources-list.sh/v0.1.1/repro-sources-list.sh \
      7    /usr/local/bin/repro-sources-list.sh
      8
      9RUN chmod +x /usr/local/bin/repro-sources-list.sh && \
     10    /usr/local/bin/repro-sources-list.sh && \
     11    apt-get update && \
     12    DOCKER_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
     13        zsh socat bsdmainutils
     14
     15COPY run.sh run.sh
     16RUN chmod +x run.sh
     17EXPOSE 1024
     18CMD socat TCP-LISTEN:1024,fork,reuseaddr EXEC:"./run.sh",stderr