1
1
mirror of https://github.com/chubin/cheat.sh.git synced 2024-11-22 18:17:38 +03:00
cheat.sh/Dockerfile

22 lines
750 B
Docker
Raw Permalink Normal View History

FROM alpine:3.14
2020-07-27 21:06:14 +03:00
# 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 sed
2020-11-17 02:03:42 +03:00
## copying
WORKDIR /app
COPY . /app
2020-07-27 21:06:14 +03:00
## building missing python packages
2020-11-13 22:02:43 +03:00
RUN apk add --no-cache --virtual build-deps py3-pip g++ python3-dev libffi-dev \
&& pip3 install --no-cache-dir --upgrade pygments \
2020-11-17 02:03:42 +03:00
&& pip3 install --no-cache-dir -r requirements.txt \
&& apk del build-deps
2020-11-17 02:03:42 +03:00
# fetching dependencies
2020-11-13 20:21:28 +03:00
RUN mkdir -p /root/.cheat.sh/log/ \
2020-07-27 21:06:14 +03:00
&& python3 lib/fetch.py fetch-all
# installing server dependencies
RUN apk add --update --no-cache py3-jinja2 py3-flask bash gawk
ENTRYPOINT ["python3", "-u", "bin/srv.py"]
CMD [""]