Poetry 1.2.0 업데이트로 인한 Docker Install Error
기존에 Poetry1.1.12를 사용중 Poetry가 1.2.0으로 업데이트 되어 해당 버전으로 Docker Build중 에러가 지속적으로 발생함
poetry git에 issue를 보던 중 아래 poetry 버전을 1.1.15로 고정하여 설치 하라는 글 발견
RUN pip install poetry
를 아래와 같이 수정
RUN pip install poetry==1.1.15
빌드가 성공함.
다른 방법 추가
poetry cache clear . --all
rm poetry.lock
poetry install
주의 사항: poetry.lock이 새로 생성되기 때문에 모든 패키지가 최신버전이 될 수 있음.
Comments