選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

20 行
761 B

  1. #!/bin/bash
  2. # Build the server
  3. docker build -t afasystemadmin/ble-ai-localizer:server_v1 -f ../../build/package/Dockerfile.server ../../
  4. # Build the location
  5. docker build -t afasystemadmin/ble-ai-localizer:location_v1 -f ../../build/package/Dockerfile.location ../../
  6. # Build the decoder
  7. docker build -t afasystemadmin/ble-ai-localizer:decoder_v1 -f ../../build/package/Dockerfile.decoder ../../
  8. # Build the bridge
  9. docker build -t afasystemadmin/ble-ai-localizer:bridge_v1 -f ../../build/package/Dockerfile.bridge ../../
  10. docker image ls
  11. docker push afasystemadmin/ble-ai-localizer:server_v1
  12. docker push afasystemadmin/ble-ai-localizer:location_v1
  13. docker push afasystemadmin/ble-ai-localizer:decoder_v1
  14. docker push afasystemadmin/ble-ai-localizer:bridge_v1