forked from buildpacks/pack
-
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.
Add lifecycle binaries to builder during create-builder
* Add Downloader for generic artifact downloads * Add lifecycle fetcher Signed-off-by: Andrew Meyer <ameyer@pivotal.io> Signed-off-by: Danny Joyce <djoyce@pivotal.io> Signed-off-by: Emily Casey <ecasey@pivotal.io>
- Loading branch information
1 parent
e03fb14
commit 6ed36d1
Showing
59 changed files
with
1,010 additions
and
447 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
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,18 @@ | ||
FROM ubuntu:bionic | ||
|
||
ENV CNB_USER_ID=2222 | ||
ENV CNB_GROUP_ID=3333 | ||
|
||
RUN \ | ||
groupadd pack --gid 3333 && \ | ||
useradd --uid 2222 --gid 3333 -m -s /bin/bash pack | ||
|
||
RUN apt-get update && apt-get -yq install netcat | ||
LABEL io.buildpacks.stack.id=pack.test.stack | ||
|
||
RUN mkdir /layers && chown pack:pack /layers | ||
|
||
USER pack | ||
WORKDIR /layers | ||
|
||
|
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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
Oops, something went wrong.