-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1 containerize asciiquarium #20
Open
salvadorrueda
wants to merge
2
commits into
cmatsuoka:master
Choose a base branch
from
salvadorrueda:1-containerize-asciiquarium
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,6 @@ | ||
FROM alpine:latest | ||
RUN apk add --no-cache perl-utils perl-curses make | ||
RUN cpan && \ | ||
cpan Term::Animation | ||
COPY asciiquarium /usr/bin/asciiquarium | ||
CMD ["perl","/usr/bin/asciiquarium"] |
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 |
---|---|---|
@@ -1,58 +1,19 @@ | ||
Asciiquarium v1.1 | ||
by Kirk Baucom <kbaucom@schizoid.com> | ||
http://www.robobunny.com | ||
|
||
Asciiquarium is an aquarium/sea animation in ASCII art. | ||
|
||
Installation | ||
------------ | ||
|
||
Asciiquarium is a single perl script, so all you have to do is make sure | ||
it's executable and put it somewhere convenient, like /usr/local/bin or | ||
/usr/local/games. | ||
Fork from https://github.com/cmatsuoka/asciiquarium | ||
|
||
Ubuntu | ||
------ | ||
based on | ||
|
||
Out-of-the-box ubuntu doesn't satisfy the Requirements below, so | ||
here's how to get them: | ||
1) Get perl's curses package which is available from apt: | ||
sudo apt-get install libcurses-perl | ||
2) Run | ||
cpan | ||
at the shell. Agree to the defaults for everything. | ||
To leave cpan, type | ||
quit | ||
3) Type | ||
sudo cpan Term::Animation | ||
|
||
Requirements | ||
------------ | ||
|
||
You must have the Term::Animation module, which you can get from | ||
http://www.cpan.org. The Term::Animation module also requires the Curses | ||
module, which you can also get from CPAN. This program will only run on | ||
platforms that have a Curses library (so it won't work on Windows, but | ||
you might get it to run under cygwin). | ||
|
||
Usage | ||
----- | ||
|
||
Command line arguments: | ||
-c "classic" mode, only show species from Asciiquarium 1.0 | ||
Asciiquarium v1.1 | ||
by Kirk Baucom <kbaucom@schizoid.com> | ||
http://www.robobunny.com | ||
|
||
While running: | ||
q quit | ||
r redraw (will recreate all entities) | ||
p toggle pause | ||
|
||
Contributors | ||
------------ | ||
Asciiquarium is an aquarium/sea animation in ASCII art. | ||
|
||
New fish species backported from the Android live wallpaper and | ||
other minor improvements by Claudio Matsuoka. | ||
**Run as container** | ||
|
||
Pretty much all of the ASCII art was done by Joan Stark: | ||
http://www.geocities.com/SoHo/7373/ | ||
|
||
Anything that she didn't do, I don't have a source for. | ||
\$git clone https://github.com/salvadorrueda/asciiquarium/ | ||
\$cd asciiquarium | ||
\$docker build -t asciiquarium . | ||
\$docker run -it --rm asciiquarium |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why removing the README content ? Also everybody don't use Docker.