-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from sarnold/dep-upgrades
update tag_regexps, bump dep version
- Loading branch information
Showing
3 changed files
with
11 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine | ||
FROM python:3.9-alpine3.16 | ||
|
||
LABEL "maintainer"="Stephen Arnold <[email protected]>" \ | ||
"repository"="https://github.com/sarnold/gitchangelog-action" \ | ||
|
@@ -8,17 +8,14 @@ LABEL "maintainer"="Stephen Arnold <[email protected]>" \ | |
"com.github.actions.icon"="check-circle" \ | ||
"com.github.actions.color"="package" | ||
|
||
RUN apk --no-cache add \ | ||
python3 \ | ||
python3-dev \ | ||
bash \ | ||
git \ | ||
py3-pip | ||
RUN apk --no-cache add git bash | ||
|
||
RUN pip install https://github.com/sarnold/gitchangelog/archive/refs/tags/3.0.9.tar.gz | ||
ADD genchangelog.sh / | ||
ADD requirements.txt / | ||
ADD gitchangelog-release.rc / | ||
|
||
ADD ./gitchangelog-release.rc /gitchangelog-release.rc | ||
|
||
ADD ./genchangelog.sh /genchangelog.sh | ||
RUN pip install --upgrade pip && \ | ||
pip install --no-cache-dir -r /requirements.txt | ||
RUN chmod +x /genchangelog.sh | ||
|
||
ENTRYPOINT ["/genchangelog.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
https://github.com/sarnold/gitchangelog/releases/download/3.1.1/gitchangelog-3.1.1-py3-none-any.whl |