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 372c5d0 commit a538409Copy full SHA for a538409
Dockerfile
@@ -5,9 +5,9 @@ RUN apk add --update --no-cache git py3-six py3-pygments py3-yaml py3-gevent \
5
libstdc++ py3-colorama py3-requests py3-icu py3-redis
6
## building missing python packages
7
COPY requirements.txt /tmp
8
-RUN apk add --no-cache --virtual build-deps py3-pip g++ python3-dev \
9
- && pip3 install --no-cache-dir --upgrade -r /tmp/requirements.txt \
10
- && pip3 install --no-cache-dir rapidfuzz colored polyglot pycld2 \
+RUN apk add --no-cache --virtual build-deps py3-pip g++ python3-dev libffi-dev \
+ && pip3 install --no-cache-dir --upgrade pygments \
+ && pip3 install --no-cache-dir -r /tmp/requirements.txt \
11
&& apk del build-deps
12
## copying
13
WORKDIR /app
0 commit comments