Skip to content

Commit a279d2f

Browse files
committed
Add libstdc++ to alpine image
1 parent a3bfd42 commit a279d2f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ RUN pip install $(grep -Eoh 'numpy==[0-9.]+' requirements.txt) && \
3030
FROM python:${PYTHON_VERSION}-alpine as alpine
3131
WORKDIR /var/lib/pandas/
3232
COPY --from=lock /var/lib/pandas/ .
33-
RUN apk add --no-cache --virtual .build-deps g++ && \
33+
RUN apk add --no-cache libstdc++ && \
34+
apk add --no-cache --virtual .build-deps g++ && \
3435
ln -s /usr/include/locale.h /usr/include/xlocale.h && \
3536
pip install $(grep -Eoh 'numpy==[0-9.]+' requirements.txt) && \
3637
pip install -r requirements.txt && \

0 commit comments

Comments
 (0)