Skip to content

Commit

Permalink
working changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruckusist committed Apr 1, 2017
1 parent be8c335 commit 39b5bb2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 16 deletions.
19 changes: 5 additions & 14 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,10 @@ 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
RUN git clone http://git.alphagriffin.com/ruckusist/tf_curses

# Install Git repos
RUN python3 tf_curses/setup.py install

# this a Hack to keep a non serving docker open for use
CMD tail -f /dev/null

# end our program
<<<<<<< HEAD
#CMD fortune -a | cowsay
=======
# CMD fortune -a | cowsay
>>>>>>> 907cc2c3b6b28be5ac9eb3c2a7ed4a3217f7cfe6

# keep our docker open
# this is a hack.
CMD tail -f /dev/null
# this is a chatbot-- for now... !!!
CMD tf_curses
5 changes: 3 additions & 2 deletions dummy/os/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ def run_image(self, image):
images = self.client.images.list()
print("{}".format(images))
for x in images:
print("current tag: {}".format(x.tag))
if image == x.tag:
name = x.attrs.keys('name')
print("current tag: {}".format(name))
if image in name:
print("We have the Image we need locally")
self.client.images.load(image)
print("The Image is loaded.")
Expand Down

0 comments on commit 39b5bb2

Please sign in to comment.