-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(docker): User ruby:latest + add README (#55)
* feat(docker): use ruby:latest * feat(docs): add README * chore(docs): add note re: semantic-release * fix(fpm): add patch for apk See also: jordansissel/fpm#1227 * chore(*): appease pre-commit
- Loading branch information
1 parent
1036c81
commit 24a0315
Showing
3 changed files
with
38 additions
and
23 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
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,7 @@ | ||
# docker-fpm | ||
|
||
This repository houses a `Dockerfile` and `docker-bake.hcl` which build a container around [fpm](https://fpm.readthedocs.io/en/latest/), the package manager used by [kong-build-tools](https://github.com/Kong/kong-build-tools/blob/d1c1b71e238b715b2a3ff551ab31628426a228df/dockerfiles/Dockerfile.package#L8). | ||
|
||
## Contributing | ||
|
||
Changes to this repo cause its Dockerfile to be automatically built and released by Github Actions when the commits for said changes confirm to [Semantic Release](https://semantic-release.gitbook.io/semantic-release/) conventions. |
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,12 @@ | ||
diff --color -Naur lib/fpm/package/apk.rb.orig lib/fpm/package/apk.rb | ||
--- lib.orig/fpm/package/apk.rb 2022-12-23 14:03:55.583865965 -0800 | ||
+++ lib/fpm/package/apk.rb 2022-12-23 14:06:56.040703096 -0800 | ||
@@ -252,7 +252,7 @@ | ||
|
||
# directories have a magic string inserted into their name | ||
full_record_path = extension_header[TAR_NAME_OFFSET_START..TAR_NAME_OFFSET_END].delete("\0") | ||
- full_record_path = add_paxstring(full_record_path) | ||
+ # full_record_path = add_paxstring(full_record_path) | ||
|
||
# hash data contents with sha1, if there is any content. | ||
if(typeflag == '5') |