mirror of
https://github.com/serengil/deepface.git
synced 2025-06-08 12:35:22 +00:00
16 lines
814 B
Bash
Executable File
16 lines
814 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
GIT_VERSION=$(git describe --tags --always --long)
|
|
|
|
docker build -t repo.eresearch.unimelb.edu.au:8001/happypet/webapp:$GIT_VERSION \
|
|
-t repo.eresearch.unimelb.edu.au:8000/happypet/webapp:$GIT_VERSION \
|
|
-t repo.eresearch.unimelb.edu.au:8001/happypet/webapp:latest \
|
|
-t repo.eresearch.unimelb.edu.au:8000/happypet/webapp:latest \
|
|
-f docker/release/Dockerfile .
|
|
|
|
docker build -t repo.eresearch.unimelb.edu.au:8001/happypet/webapp-gpu:$GIT_VERSION \
|
|
-t repo.eresearch.unimelb.edu.au:8000/happypet/webapp-gpu:$GIT_VERSION \
|
|
-t repo.eresearch.unimelb.edu.au:8001/happypet/webapp-gpu:latest \
|
|
-t repo.eresearch.unimelb.edu.au:8000/happypet/webapp-gpu:latest \
|
|
-f docker/release_gpu/Dockerfile .
|