-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(build): adding pc64le build for local provisioner pv
Signed-off-by: Peeyush Gupta <peeygupt@in.ibm.com>
- Loading branch information
Showing
4 changed files
with
43 additions
and
0 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
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,25 @@ | ||
#Make the base image configurable. If BASE IMAGES is not provided | ||
#docker command will fail | ||
ARG BASE_IMAGE=ubuntu:18.04 | ||
FROM $BASE_IMAGE | ||
|
||
RUN apt update && apt install -y \ | ||
iproute2 \ | ||
bash \ | ||
curl \ | ||
net-tools \ | ||
procps \ | ||
ca-certificates | ||
|
||
COPY provisioner-localpv / | ||
|
||
ARG BUILD_DATE | ||
|
||
LABEL org.label-schema.name="provisioner-localpv" | ||
LABEL org.label-schema.description="Dynamic Local PV Provisioner for OpenEBS" | ||
LABEL org.label-schema.url="http://www.openebs.io/" | ||
LABEL org.label-schema.vcs-url="https://github.com/openebs/maya" | ||
LABEL org.label-schema.schema-version="1.0" | ||
LABEL org.label-schema.build-date=$BUILD_DATE | ||
|
||
CMD ["/provisioner-localpv"] |
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