Skip to content

Commit

Permalink
Add welcome script to dev helper container
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Aug 15, 2023
1 parent d4c4dd1 commit bf433b4
Show file tree
Hide file tree
Showing 16 changed files with 33 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ COPY --chown=app . .

USER root

CMD ["tail", "-f", "/dev/null"]
CMD ["welcome"]
Empty file modified dev/bin/build
100644 → 100755
Empty file.
Empty file modified dev/bin/build-css
100644 → 100755
Empty file.
Empty file modified dev/bin/build-js
100644 → 100755
Empty file.
Empty file modified dev/bin/createsuperuser
100644 → 100755
Empty file.
Empty file modified dev/bin/dev
100644 → 100755
Empty file.
Empty file modified dev/bin/dev-css
100644 → 100755
Empty file.
Empty file modified dev/bin/dev-js
100644 → 100755
Empty file.
Empty file modified dev/bin/help
100644 → 100755
Empty file.
Empty file modified dev/bin/makemigrations
100644 → 100755
Empty file.
Empty file modified dev/bin/manage
100644 → 100755
Empty file.
Empty file modified dev/bin/pull-preview
100644 → 100755
Empty file.
Empty file modified dev/bin/setup-npm
100644 → 100755
Empty file.
Empty file modified dev/bin/update-npm
100644 → 100755
Empty file.
Empty file modified dev/bin/update-poetry
100644 → 100755
Empty file.
32 changes: 32 additions & 0 deletions dev/bin/welcome
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/bin/bash

echo " ,--. ,--."
echo " ((O ))--((O ))"
echo " ,'_\`--'____\`--'_\`. .-----------------------------."
echo " _: ____________ :_ | |"
echo " | | ||::::::::::|| | | | Awaiting your command... |"
echo " | | ||::::::::::|| | | | |"
echo " | | ||::::::::::|| | | | .----------------------------^"
echo " |_| |/__________\\| |_| |/"
echo " |________________|"
echo " __..-' \`-..__"
echo " .-| : .----------------. : |-."
echo " ,\\ || | |\\______________/| | || /."
echo " /\`.\\:| | || __ __ __ || | |;/,'\\"
echo " :\`-._\\;.| || '--''--''--' || |,:/_.-':"
echo " | : | || .----------. || | : |"
echo " | | | || '- DEVBOT -' || | | |"
echo " | | | || _ _ _ || | | |"
echo " :,--.; | || (_) (_) (_) || | :,--.;"
echo " (\`-'|) | ||______________|| | (|\`-')"
echo " \`--' | |/______________\\| | \`--'"
echo " |____________________|"
echo " \`.________________,'"
echo " (_______)(_______)"
echo " (_______)(_______)"
echo " (_______)(_______)"
echo " (_______)(_______)"
echo " | || |"
echo " '--------''--------'"

tail -f /dev/null

0 comments on commit bf433b4

Please sign in to comment.