add gitsome

Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle 2016-10-17 11:46:22 -07:00
parent e775b4027c
commit 87f3f641a9
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

24
gitsome/Dockerfile Normal file
View File

@ -0,0 +1,24 @@
# Run gitsome command line tool:
# https://github.com/donnemartin/gitsome
#
# Usage:
# docker run --rm -it \
# -v ${HOME}/.gitsomeconfig:/home/anon/.gitsomeconfig \
# -v ${HOME}/.gitsomeconfigurl:/home/anon/.gitsomeconfigurl \
# r.j3ss.co/gitsome
#
FROM python:3-alpine
RUN apk add --no-cache \
bash
RUN pip3 install gitsome
ENV HOME /home/anon
RUN adduser -S anon \
&& chown -R anon $HOME
WORKDIR $HOME
USER anon
ENTRYPOINT ["gitsome"]