Add Makefile

This commit is contained in:
ekzyis 2021-09-25 22:46:45 +02:00
parent 9f34e0d774
commit d04783e2b3
3 changed files with 26 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
venv venv
__pycache__ __pycache__
.env .env
docker.env
.coverage .coverage
*cookies.txt *cookies.txt

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
GIT_COMMIT != git log --pretty=format:'%h' -n 1
build:
source <(cat docker.env | sed -e 's/^/export /g')
docker build \
--build-arg DISCORD_BOT_TOKEN=${DISCORD_BOT_TOKEN} \
--build-arg YOUTUBE_COOKIES=${YOUTUBE_COOKIES} \
--build-arg GIT_COMMIT=${GIT_COMMIT} \
-t musicube:${GIT_COMMIT} -t musicube:latest \
.

View File

@ -34,3 +34,18 @@ Run bot:
``` ```
$ python src/bot.py $ python src/bot.py
``` ```
### Deployment
Requirements:
```
$ docker --version
Docker version 20.10.8, build 3967b7d28e
```
Build image:
```
$ make build
```