1
0
mirror of https://github.com/chubin/cheat.sh.git synced 2026-06-20 13:16:44 +02:00
Files
cheat.sh/Dockerfile
T
Anatoli Babenia 981aa35c36 Fix Dockerfile (#172, #156)
This still doesn't work as expected, because `cht.sh.txt` runs in
interactive mode and gives the prompt.

    Where should cheat.sh be installed [/root/.cheat.sh]?
2020-07-27 10:07:00 +03:00

16 lines
520 B
Docker

FROM alpine:3.10
WORKDIR /app
COPY requirements.txt /app/
RUN apk add --update --no-cache python2 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 python2-dev \
build-base git \
&& pip install -r requirements.txt \
&& apk del build-deps
COPY . /app
RUN apk add --update --no-cache curl git py2-virtualenv \
&& ./share/cht.sh.txt --standalone-install
ENTRYPOINT ["python2"]
CMD ["bin/srv.py"]