Skip to content

Commit

Permalink
docker에서 distutils 설치관련 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kimyd committed Sep 7, 2024
1 parent 9079901 commit eabd85e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ FROM base AS build
RUN apk update && apk --no-cache add \
python3 \
make \
g++
g++ \
py3-setuptools \
py3-distutils-extra # Add distutils for Python
WORKDIR /app
COPY . /app
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
Expand Down

0 comments on commit eabd85e

Please sign in to comment.