Created
March 9, 2019 16:09
-
-
Save b401/c9b06968cf510d22b144989f7ad15fff to your computer and use it in GitHub Desktop.
34c3 Digital Billboard - Easy Challenge as Dockerimage
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 debian:latest | |
ADD https://archive.aachen.ccc.de/junior.34c3ctf.ccc.ac/uploads/billboard-56c33efc813379c674ea0d0a64258b5fa835f8d4.tar.gz /srv | |
RUN tar xvf /srv/billboard-56c33efc813379c674ea0d0a64258b5fa835f8d4.tar.gz -C /srv \ | |
&& rm -f /srv/billboard-56c33efc813379c674ea0d0a64258b5fa835f8d4.tar.gz \ | |
&& useradd -g 0 -M -o -u 0 challenge | |
USER challenge | |
WORKDIR /srv | |
ENTRYPOINT ["./server"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment