Skip to content

Commit

Permalink
Merge pull request #45 from peter-evans/git-lfs
Browse files Browse the repository at this point in the history
Update Docker Image to include support for git-lfs
  • Loading branch information
peter-evans committed Sep 26, 2019
2 parents 76116b7 + 0629689 commit 7beba58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.3
FROM alpine:3.10.2

LABEL maintainer="Peter Evans <mail@peterevans.dev>"
LABEL repository="https://github.com/peter-evans/create-pull-request"
Expand All @@ -11,8 +11,10 @@ LABEL com.github.actions.color="gray-dark"

COPY LICENSE README.md /

RUN apk add python3-dev git git-lfs

COPY requirements.txt /tmp/
RUN pip install --requirement /tmp/requirements.txt
RUN pip3 install --requirement /tmp/requirements.txt

COPY create-pull-request.py /create-pull-request.py
ENTRYPOINT [ "/create-pull-request.py" ]
ENTRYPOINT [ "/create-pull-request.py" ]
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
GitPython==3.0.2
PyGithub==1.43.8
PyGithub==1.43.8

0 comments on commit 7beba58

Please sign in to comment.