We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3bfd42 commit a279d2fCopy full SHA for a279d2f
Dockerfile
@@ -30,7 +30,8 @@ RUN pip install $(grep -Eoh 'numpy==[0-9.]+' requirements.txt) && \
30
FROM python:${PYTHON_VERSION}-alpine as alpine
31
WORKDIR /var/lib/pandas/
32
COPY --from=lock /var/lib/pandas/ .
33
-RUN apk add --no-cache --virtual .build-deps g++ && \
+RUN apk add --no-cache libstdc++ && \
34
+ apk add --no-cache --virtual .build-deps g++ && \
35
ln -s /usr/include/locale.h /usr/include/xlocale.h && \
36
pip install $(grep -Eoh 'numpy==[0-9.]+' requirements.txt) && \
37
pip install -r requirements.txt && \
0 commit comments