Skip to content

Commit fe21f93

Browse files
authored
operator: install g++ on musl before installing requirements (#171)
docker build started failing on arm64 with: File "/usr/local/lib/python3.12/subprocess.py", line 1955, in _execute_child raise child_exception_type(errno_num, err_msg, err_filename) FileNotFoundError: [Errno 2] No such file or directory: 'c++'
1 parent 06aa138 commit fe21f93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

operator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ ADD operator/requirements.txt .
2828

2929
RUN mkdir workspace
3030

31-
RUN apk add gcc python3-dev musl-dev linux-headers
31+
RUN apk add gcc g++ python3-dev musl-dev linux-headers
3232

3333
RUN pip install --no-cache-dir --target workspace /opt/distro/*.whl -r requirements.txt
3434

0 commit comments

Comments
 (0)