9 lines
241 B
Bash
Executable File
9 lines
241 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
tailwindcss -i folkugat_web/assets/static/src/tw.css -o folkugat_web/assets/static/css/main.css --minify
|
|
|
|
docker build -t marc.sastre.cat/folkugat-web -f deploy/Dockerfile .
|
|
|
|
docker push marc.sastre.cat/folkugat-web:latest
|