how to copy files from host to docker container
https://stackoverflow.com/questions/22907231/how-to-copy-files-from-host-to-docker-container
docker container로 파일을 넘기고 싶은데 어떻게 해야할지 몰라서 찾아봤다.
host에서 container로 넘길 때
docker cp foo.txt container_id:/foo.txt
container에서 host로 넘길 때
docker cp container_id:/foo.txt foo.txt