9 lines
135 B
Bash
Executable File
9 lines
135 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# build latest image
|
|
grunt prod
|
|
|
|
docker build -t loopsun/cyberchef:latest .
|
|
|
|
docker push loopsun/cyberchef:latest
|