From the comments, combined with your question, you are attempting to run:
- a Windows executable
- ... inside an Ubuntu Docker image
- ... inside an Ubuntu AWS EC2 instance.
This just isn't going to work. For starters, to run a Windows executable in Docker, regardless, you have to be using a Windows Docker image. You are attempting to use the Ubuntu image.
But even if you were to try to use something like the microsoft/windowsservercore
image as a base, that wouldn't work on an Ubuntu EC2 instance. Docker is a containerization technology that requires that the base operating system be able to run the applications, since the kernel is shared between the host and the container.
Further, I'm worried. I could be wrong, but I have a feeling that the executable you are trying to run is malware. From my (admittedly quick) research, Hydra Bot is not distributed as an executable (neither Windows, nor Linux). It's a service provided through registration on their website, then inviting the bot to your Discord channel.
Again, I could be off base, but if I'm not -- Please confirm the source and be very cautious of attempting to run executables from untrusted sources.