ecc0cc14c6
Signed-off-by: Patrick Chanezon <patlist@chanezon.com>
10 lines
218 B
Bash
Executable file
10 lines
218 B
Bash
Executable file
#!/bin/bash
|
|
echo "=> Building the binary"
|
|
docker run --privileged \
|
|
-v $(pwd):/usr/src/app \
|
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
|
starefossen/github-pages jekyll build
|
|
echo $(pwd)
|
|
ls -la
|
|
ls -la _site
|
|
|