Merge pull request #45 from peter-evans/git-lfs
Update Docker Image to include support for git-lfs
This commit is contained in:
commit
7beba58e42
2 changed files with 6 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM python:3.7.3
|
FROM alpine:3.10.2
|
||||||
|
|
||||||
LABEL maintainer="Peter Evans <mail@peterevans.dev>"
|
LABEL maintainer="Peter Evans <mail@peterevans.dev>"
|
||||||
LABEL repository="https://github.com/peter-evans/create-pull-request"
|
LABEL repository="https://github.com/peter-evans/create-pull-request"
|
||||||
|
@ -11,8 +11,10 @@ LABEL com.github.actions.color="gray-dark"
|
||||||
|
|
||||||
COPY LICENSE README.md /
|
COPY LICENSE README.md /
|
||||||
|
|
||||||
|
RUN apk add python3-dev git git-lfs
|
||||||
|
|
||||||
COPY requirements.txt /tmp/
|
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
|
COPY create-pull-request.py /create-pull-request.py
|
||||||
ENTRYPOINT [ "/create-pull-request.py" ]
|
ENTRYPOINT [ "/create-pull-request.py" ]
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
GitPython==3.0.2
|
GitPython==3.0.2
|
||||||
PyGithub==1.43.8
|
PyGithub==1.43.8
|
||||||
|
|
Loading…
Reference in a new issue