Files
telnet-server/telnet/run_telnet.sh
Laika 16dd18b400
Some checks failed
Cargo test & clippy / build (push) Has been cancelled
Cargo test & clippy / rust-clippy-analyze (push) Has been cancelled
Cargo security audit / audit (push) Failing after 4s
Initial commit
2025-11-19 23:04:40 +01:00

7 lines
207 B
Bash
Executable File

#!/bin/bash
if [ -z "$(docker images -q telnet_docker:latest 2> /dev/null)" ]; then
docker build --tag telnet_docker . --file "$(dirname "$0")/Dockerfile"
fi
docker run --rm -it telnet_docker:latest "$@"