Convenience script to upload docker image to hub

This commit is contained in:
2025-12-14 08:43:39 -08:00
parent 8d73c40fc7
commit 5f7e282611

6
docker_push.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
VERSION=0.2.0
docker image build --no-cache -t asolkar/speed-data-docker:${VERSION} . && \
docker push asolkar/speed-data-docker:${VERSION}