You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 rivejä
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