2020-07-27 21:06:14 +03:00
|
|
|
FROM alpine:latest
|
|
|
|
# fetching cheat sheets
|
|
|
|
## installing dependencies
|
|
|
|
RUN apk add --update --no-cache git py3-six py3-pygments py3-yaml py3-gevent \
|
|
|
|
libstdc++ py3-colorama py3-requests py3-icu py3-redis
|
|
|
|
## building missing python packages
|
|
|
|
RUN apk add --no-cache --virtual build-deps py3-pip g++ python3-dev \
|
|
|
|
&& pip3 install rapidfuzz colored polyglot pycld2 \
|
2018-07-31 20:54:14 +03:00
|
|
|
&& apk del build-deps
|
2020-07-27 21:06:14 +03:00
|
|
|
## copying
|
|
|
|
WORKDIR /app
|
2020-07-27 09:14:22 +03:00
|
|
|
COPY . /app
|
2020-07-27 21:06:14 +03:00
|
|
|
RUN mkdir -p /root/.cheat.sh/log/ \
|
|
|
|
&& python3 lib/fetch.py fetch-all
|
|
|
|
|
|
|
|
# installing server dependencies
|
|
|
|
#RUN apk add --update --no-cache py3-cffi py2-pip py2-gevent \
|
|
|
|
# py2-flask py2-requests py2-pygments py2-redis \
|
|
|
|
# py2-cffi py2-icu bash vim gawk sed \
|
|
|
|
# && apk add --no-cache --virtual build-deps python3-dev build-base \
|
|
|
|
# && pip3 install -r requirements.txt \
|
|
|
|
# && apk del build-deps
|
|
|
|
ENTRYPOINT ["python3"]
|
2018-07-31 06:44:47 +03:00
|
|
|
CMD ["bin/srv.py"]
|