Add pipeline and created entrypoint.sh for Dockerfile

This commit is contained in:
2023-04-07 07:55:36 -07:00
parent d654125492
commit c981bb6a33
3 changed files with 31 additions and 1 deletions

6
scripts/entrypoint.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
echo "Starting Memcached..."
sleep 5
/usr/bin/memcached -u memcached -l 0.0.0.0
exit 0