... to create a Theia snapshot image that comes with Spring petclinic pre-installed and pre-built.
8 lines
202 B
Bash
Executable File
8 lines
202 B
Bash
Executable File
#!/bin/bash
|
|
set -ev
|
|
mkdir /home/project
|
|
git clone https://github.com/spring-projects/spring-petclinic.git /home/project
|
|
cd /home/project
|
|
./mvnw clean package
|
|
rm -fr target
|
|
rm -fr /tmp/clone-and-build.sh |