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.
12 lines
250 B
Bash
12 lines
250 B
Bash
2 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Copy schemata from docs
|
||
|
cp -r ../picc-docs/schemata .
|
||
|
|
||
|
# Built Jakyl site
|
||
|
cd main_page
|
||
|
JEKYLL_ENV=production bundle exec jekyll build
|
||
|
cd ..
|
||
|
|
||
|
# Build container
|
||
|
docker build --rm -t picc/picc-website -f nginx_container_build/Dockerfile .
|