Skip to content

Commit

Permalink
fix build.sh file (fixes issue space-ros#36)
Browse files Browse the repository at this point in the history
Signed-off-by: stevedan <[email protected]>
  • Loading branch information
stevedanomodolor committed Sep 7, 2024
1 parent 8ee9df8 commit cb77044
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lunar_pole_exploration_rover/docker/build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

ORG=openrobotics
IMAGE=lunar_pole_exploration_rover_demo
IMAGE=openrobotics/lunar_pole_exploration_rover_demo
TAG=latest

VCS_REF=""
Expand All @@ -14,9 +14,9 @@ echo ""
echo "##### Building Space ROS Demo Docker Image #####"
echo ""

docker build -t $IMAGE:$TAG \
docker build -t $ORG/$IMAGE:$TAG \
--build-arg VCS_REF="$VCS_REF" \
--build-arg VERSION="$VERSION" .
--build-arg VERSION="$VERSION" . \

echo ""
echo "##### Done! #####"
Expand Down

0 comments on commit cb77044

Please sign in to comment.