We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@k1rnt xorpwnxorのchalを実行するDockerfileについて chmod +x chalをして実行権限を付けないとおそらく機能しない。 なので以下のように追加してみては。
chmod +x chal
FROM ubuntu:24.04 RUN apt-get update && \ apt-get install -y socat && \ rm -rf /var/lib/apt/lists/* WORKDIR /opt/challenge COPY chal . RUN chmod +x chal EXPOSE 4000 CMD ["socat", "TCP-LISTEN:4000,reuseaddr,fork", "EXEC:./chal"]
The text was updated successfully, but these errors were encountered:
圧倒的感謝
Sorry, something went wrong.
39f5525
@schecthellraiser606 done
k1rnt
Successfully merging a pull request may close this issue.
@k1rnt
xorpwnxorのchalを実行するDockerfileについて
chmod +x chal
をして実行権限を付けないとおそらく機能しない。なので以下のように追加してみては。
The text was updated successfully, but these errors were encountered: