You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could you please add a Dockerfile to your repository? And deploy latest versions to docker, e.g., as ejwa/gitinspector:latest.
The last version on Dockerhub is from Felix Hummel in version 0.4.4 and I would like to get the current version!
This Dockerfile could be used as template for you:
FROM python:2-alpine3.7
ENV PYTHONIOENCODING=utf-8
RUN apk add --no-cache git \
&& apk add --no-cache tree
ADD gitinspector/ /tmp/gitinspector/gitinspector/
ADD DESCRIPTION.txt /tmp/gitinspector/
ADD setup.py /tmp/gitinspector/
WORKDIR /tmp/gitinspector
RUN python setup.py install
WORKDIR /
RUN rm -r /tmp/gitinspector
WORKDIR /repo
ENTRYPOINT ["gitinspector"]
Use Case
I am a lecturer in a Windows environment, applying gitinspector to support grading. I will use docker to easily run gitinspector under windows (currently with felix/gitinspector:0.4.4). I give you an example execution (with the Dockerfile from above, respecting the set workdir and entrypoint):
In the example, I assume that you would deploy to Dockerhub as ejwa/gitinspector:latest and use that one (instead of the felix/gitinspector:0.4.4 one):
Hi! Thank you for your great tool!
Could you please add a Dockerfile to your repository? And deploy latest versions to docker, e.g., as ejwa/gitinspector:latest.
The last version on Dockerhub is from Felix Hummel in version 0.4.4 and I would like to get the current version!
This Dockerfile could be used as template for you:
Use Case
I am a lecturer in a Windows environment, applying gitinspector to support grading. I will use docker to easily run gitinspector under windows (currently with felix/gitinspector:0.4.4). I give you an example execution (with the Dockerfile from above, respecting the set workdir and entrypoint):
In the example, I assume that you would deploy to Dockerhub as ejwa/gitinspector:latest and use that one (instead of the felix/gitinspector:0.4.4 one):
The text was updated successfully, but these errors were encountered: