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 027d107 commit 96fb2b1Copy full SHA for 96fb2b1
Dockerfile
@@ -6,11 +6,12 @@ RUN apk add --update --no-cache git py3-six py3-pygments py3-yaml py3-gevent \
6
## building missing python packages
7
RUN apk add --no-cache --virtual build-deps py3-pip g++ python3-dev \
8
&& pip3 install --no-cache-dir rapidfuzz colored polyglot pycld2 \
9
+ && pip3 install --no-cache-dir --update -r requirements.txt \
10
&& apk del build-deps
11
## copying
12
WORKDIR /app
13
COPY . /app
-RUN mkdir -p /root/.cheat.sh/log/ && pip3 install --no-cache-dir --update -r requirements.txt \
14
+RUN mkdir -p /root/.cheat.sh/log/ \
15
&& python3 lib/fetch.py fetch-all
16
17
# installing server dependencies
0 commit comments