mirror of
https://github.com/codex-storage/codex-frontend.git
synced 2025-03-01 02:30:49 +00:00
10 lines
291 B
Batchfile
10 lines
291 B
Batchfile
:: Variables
|
|
set REPOSITORY=thatbenbierens/codex-frontend
|
|
set TAG=initial
|
|
set APP_SRC=../frontend
|
|
set NGINX_TEMPLATE=docker/nginx.template
|
|
|
|
:: Build
|
|
docker build --build-arg APP_SRC=%APP_SRC% --build-arg NGINX_TEMPLATE=%NGINX_TEMPLATE% -t %REPOSITORY%:%TAG% .
|
|
docker push %REPOSITORY%:%TAG%
|