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 0a80be8 commit 372c5d0Copy full SHA for 372c5d0
Dockerfile
@@ -4,8 +4,9 @@ FROM alpine:3.12
4
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 \
- && pip3 install --no-cache-dir --upgrade -r requirements.txt \
9
+ && pip3 install --no-cache-dir --upgrade -r /tmp/requirements.txt \
10
&& pip3 install --no-cache-dir rapidfuzz colored polyglot pycld2 \
11
&& apk del build-deps
12
## copying
0 commit comments