21.02.10 15:12 작성
·
250
1
git clone https://github.com/raccoonyy/django-sample-for-docker-compose.git django-sample
cd django-sample
docker build -t django-sample . <=== 빌드를 하다가 에러가 아래와 같은 에러가 발생합니다.
Step 6/8 : ADD ./gunicorn /app/gunicorn/
Add failed: file not found in build context or excluded by .dockerignore: stat gunicorn: file does not exist
제가 실행을 다른 노트북에서 하는지라 대충 에러를 옮겨적었습니다.
Dockerfile에 보니깐. ADD ./gunicorn /app/guniconr/ 이 부분이 있는데, 실제로 깃에서 클론한 것에는 없어서요.
제가 파이썬이나 장고는 잘 몰라서 이 파일을 어디서 복사해야 하는건가요? https://pypi.org/project/gunicorn/#modal-close 여기 가서 tar.gz 다운받아서 그 폴더에 복사하면 될까요?