mirror of
https://github.com/chubin/cheat.sh.git
synced 2026-06-20 21:26:44 +02:00
15 lines
471 B
Docker
15 lines
471 B
Docker
FROM alpine:latest
|
|
WORKDIR /app
|
|
COPY . /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 --update --no-cache --virtual build-deps python2-dev \
|
|
build-base git \
|
|
&& pip install -r requirements.txt \
|
|
&& sh share/scripts/get-sheets.sh \
|
|
&& apk del build-deps \
|
|
&& rm -rf /var/cache/apk/*
|
|
ENTRYPOINT ["python2"]
|
|
CMD ["bin/srv.py"]
|