You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
389 B
Bash
13 lines
389 B
Bash
3 years ago
|
#!/bin/bash
|
||
|
|
||
|
VERSION=0.0.0
|
||
|
|
||
|
bash fetch_models.sh
|
||
|
|
||
|
docker build -f buscribe/Dockerfile -t buscribe:$VERSION .
|
||
|
docker build -f buscribe-api/Dockerfile -t buscribe-api:$VERSION .
|
||
|
|
||
|
docker build -f less/Dockerfile -t lessc
|
||
|
docker run --rm -v "$(pwd)"/buscribe-web:/buscribe-web lessc /buscribe-web/style.less > buscribe-web/style.css
|
||
|
|
||
|
docker build -f nginx/Dockerfile -t buscribe-web:$VERSION .
|