-
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.
- Loading branch information
ruckusist
committed
Mar 18, 2017
1 parent
8ebeda3
commit cd8d6a3
Showing
3 changed files
with
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# echo "Starting The Docker Build Process" | ||
FROM gentoo/stage3-amd64:latest | ||
|
||
# echo "Installing Programs" | ||
# install your apps | ||
# USE RUN FOR COMMITTED CHANGES | ||
# and setup instructions | ||
|
||
# Starting Portage Package Manager | ||
RUN emerge --sync | ||
# thats the hard part... | ||
|
||
# fortune and cowsay for comedy... | ||
RUN emerge games-misc/cowsay | ||
RUN emerge games-misc/fortune-mod | ||
|
||
# install git for moving public files around | ||
RUN emerge dev-vcs/git | ||
|
||
# Starting Git Startup and Basic Setup Still | ||
RUN mkdir /repos | ||
RUN cd /repos | ||
RUN git clone http://git.alphagriffin.com/ruckusist/bash_utilities | ||
|
||
# end our program | ||
CMD fortune -a | cowsay | ||
|
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,9 @@ | ||
[DEFAULT] | ||
main-repo = gentoo | ||
|
||
[gentoo] | ||
location = /usr/portage | ||
sync-type = rsync | ||
sync-uri = rsync://lannocc.org/gentoo-portage | ||
auto-sync = yes | ||
|