We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81aa27f commit 3200925Copy full SHA for 3200925
Dockerfile
@@ -4,11 +4,10 @@ COPY . /app
4
RUN apk add --update --no-cache python2 py2-pip py2-gevent \
5
py2-flask py2-requests py2-pygments py2-redis \
6
py2-cffi py2-icu bash vim gawk sed \
7
- && apk add --update --no-cache --virtual build-deps python2-dev \
+ && apk add --no-cache --virtual build-deps python2-dev \
8
build-base git \
9
&& pip install -r requirements.txt \
10
&& sh share/scripts/get-sheets.sh \
11
- && apk del build-deps \
12
- && rm -rf /var/cache/apk/*
+ && apk del build-deps
13
ENTRYPOINT ["python2"]
14
CMD ["bin/srv.py"]
0 commit comments