Skip to content

Commit

Permalink
dockerfile should be stable.
Browse files Browse the repository at this point in the history
  • Loading branch information
ruckusist committed Mar 18, 2017
1 parent 8ebeda3 commit cd8d6a3
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Dockerfile
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

2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,5 @@ If you have not installed the project system-wide or you have some changes to tr
sys.path.insert(0, os.path.abspath('/path/to/pyproject'))
import ag.pyproject

.. notes
.. https://sonarqube.com/about for possible ideas
9 changes: 9 additions & 0 deletions gentoo.conf
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

0 comments on commit cd8d6a3

Please sign in to comment.