logos-storage-frontend/docker/build-docker.bat

9 lines
206 B
Batchfile
Raw Normal View History

:: Variables
set repository=thatbenbierens/codex-frontend
set tag=initial
set app_src=../frontend
:: Build
docker build --build-arg APP_SRC=%app_src% -t %repository%:%tag% .
docker push %repository%:%tag%