there is a simple way to copy files from local host to AWS ECS Fargate container?
Like Docker cp docker cp :/file/path/in/container/file /host/local/path/file ?
I've found some workarounds like:
- pass through a S3 Bucket (I have to install AWS cli on container and give him credentials inside container...not a beaeutiful thing!)
- mount an EFS shared folder in EC2 instance (I've to mount EFS folder in instance and upload the file to it from my host...2 steps and shared folder)
Can someone help me please?
Thanks