성장과정(dev)/docker
docker build error - [keyword: circular depenency]
lowellSunny
2023. 5. 16. 15:06
docker 빌드하니 다음과 같은 에러가 뜨는 경우가 있다.
failed to solve with frontend dockerfile.v0: failed to create LLB definition: circular dependency detected on stage: builder
나같은 경우엔 도커파일을 확인해보니 아래와 같이 되어있어 npm 명령어가 제대로 끝나지 않아서 생기는 문제였다.
...
RUN npm ci && \
npm run build && \
rm -rf node_modules && \
npm ci --omit=dev \
...
해결
RUN npm ci && \
npm run build && \
rm -rf node_modules && \
npm ci --omit=dev