-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds init-sh and init-bash which are minimalist images These can be useful for small init containers Signed-off-by: Tiago Castro <[email protected]>
- Loading branch information
1 parent
5fddd7e
commit 9bc69e5
Showing
3 changed files
with
34 additions
and
1 deletion.
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,14 @@ | ||
FROM alpine:3.20.1 | ||
|
||
RUN apk add --no-cache bash | ||
|
||
ARG DBUILD_DATE | ||
ARG DBUILD_REPO_URL="https://github.com/openebs/linux-utils" | ||
ARG DBUILD_SITE_URL="https://www.openebs.io/" | ||
|
||
LABEL org.label-schema.schema-version="1.0" | ||
LABEL org.label-schema.name="linux-utils" | ||
LABEL org.label-schema.description="Linux Container for OpenEBS Helper jobs" | ||
LABEL org.label-schema.build-date=$DBUILD_DATE | ||
LABEL org.label-schema.vcs-url=$DBUILD_REPO_URL | ||
LABEL org.label-schema.url=$DBUILD_SITE_URL |
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 @@ | ||
FROM alpine:3.20.1 | ||
|
||
ARG DBUILD_DATE | ||
ARG DBUILD_REPO_URL="https://github.com/openebs/linux-utils" | ||
ARG DBUILD_SITE_URL="https://www.openebs.io/" | ||
|
||
LABEL org.label-schema.schema-version="1.0" | ||
LABEL org.label-schema.name="linux-utils" | ||
LABEL org.label-schema.description="Linux Container for OpenEBS Helper jobs" | ||
LABEL org.label-schema.build-date=$DBUILD_DATE | ||
LABEL org.label-schema.vcs-url=$DBUILD_REPO_URL | ||
LABEL org.label-schema.url=$DBUILD_SITE_URL |