mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-09 06:33:52 -05:00
34 lines
960 B
Bash
Executable File
34 lines
960 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
###################################################################
|
|
# This script will get executed *once* the Docker container has
|
|
# been built. Commands that need to be executed with all available
|
|
# tools and the filesystem mount enabled should be located here.
|
|
###################################################################
|
|
|
|
echo "RUNNING ENTRYPOINT SCRIPT"
|
|
|
|
# Define aliases
|
|
echo -e "\n\n# User's Aliases" >> ~/.zshrc
|
|
echo -e "alias fd=fdfind" >> ~/.zshrc
|
|
echo -e "alias l='ls -al --color'" >> ~/.zshrc
|
|
echo -e "alias ls='exa'" >> ~/.zshrc
|
|
echo -e "alias l='exa -alh'" >> ~/.zshrc
|
|
echo -e "alias ll='exa -alh@ --git'" >> ~/.zshrc
|
|
echo -e "alias lt='exa -al -T -L 2'" >> ~/.zshrc
|
|
|
|
cd /workspace
|
|
|
|
pip3 install -r requirements.txt
|
|
make bootstrap
|
|
|
|
# run flask
|
|
# make run
|
|
|
|
# Warm up git index prior to display status in prompt else it will
|
|
# be quite slow on every invocation of starship.
|
|
git status
|
|
|
|
echo "FINISHED ENTRYPOINT SCRIPT"
|