Skip to content

Commit 372c5d0

Browse files
committed
Copy requirements.txt
1 parent 0a80be8 commit 372c5d0

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
@@ -4,8 +4,9 @@ FROM alpine:3.12
44
RUN apk add --update --no-cache git py3-six py3-pygments py3-yaml py3-gevent \
55
libstdc++ py3-colorama py3-requests py3-icu py3-redis
66
## building missing python packages
7+
COPY requirements.txt /tmp
78
RUN apk add --no-cache --virtual build-deps py3-pip g++ python3-dev \
8-
&& pip3 install --no-cache-dir --upgrade -r requirements.txt \
9+
&& pip3 install --no-cache-dir --upgrade -r /tmp/requirements.txt \
910
&& pip3 install --no-cache-dir rapidfuzz colored polyglot pycld2 \
1011
&& apk del build-deps
1112
## copying

0 commit comments

Comments
 (0)