7 lines
289 B
Plaintext
Executable File
7 lines
289 B
Plaintext
Executable File
#/bin/bash
|
|
export REGISTRY="docker.triton2.fet.at"
|
|
git clone https://git.fet.at/bofh/fet2020.git tmp/fet2020
|
|
# Build a development Image with Theia and all content
|
|
docker build -f Dockerfile.test -t $REGISTRY/fet2020django:latest .
|
|
docker push $REGISTRY/fet2020django
|
|
rm -rf ./tmp/fet2020 |