You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
213 B

  1. FROM ubuntu:latest
  2. RUN apt update && \
  3. apt install socat -y
  4. WORKDIR /app
  5. COPY ./flag.txt .
  6. COPY ./spell-warz-again .
  7. CMD socat tcp-listen:12345,reuseaddr,fork EXEC:\"./spell-warz-again\"
  8. EXPOSE 12345/tcp