8 lines
164 B (Stored with Git LFS)
Bash
Executable file
8 lines
164 B (Stored with Git LFS)
Bash
Executable file
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
docker build --no-cache -t zammad/chat-build:latest .
|
|
|
|
docker run --rm -v "$(pwd)/:/tmp/gulp" zammad/chat-build:latest
|