Added Dockerfile and execution guide for Animalese Translator & Caterpillar Game#426
Open
gauritambe wants to merge 6 commits intondleah:mainfrom
Open
Added Dockerfile and execution guide for Animalese Translator & Caterpillar Game#426gauritambe wants to merge 6 commits intondleah:mainfrom
gauritambe wants to merge 6 commits intondleah:mainfrom
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What this PR does
This PR adds Docker support and updated documentation for two projects: Animalese Translator and Caterpillar Game, making them easier to run on any machine.
Changes Made
🐛 Caterpillar Game
🐳 Added Dockerfile
Dockerfileto containerize the Caterpillar Gamepython3-tkandxvfbfor GUI support inside Docker📖 Updated README
How to Run:
🎵 Animalese Translator
🐳 Added Dockerfile
Dockerfileto containerize the applicationpython3-gi,gstreamer, etc.)/app/voices/guy3for container execution.wavfiles to theoutput/directory🛠️ Fixed
main.pyvoice_pathfrom hardcoded local path to/app/voices/guy3playsoundcall inside container since audio playback requires host machine📄 Added
requirements.txtplaysound==1.2.2(1.3.0 is broken on Python 3.12)scipynumpy📖 Updated README
How to Run:
Why these changes?
Both projects had hardcoded local paths and no containerization support, making them difficult to run on different machines. This PR makes both projects portable and beginner-friendly with clear Docker-based setup instructions.