Skip to content

Commit

Permalink
Merge pull request #80 from nautobot/1.5.21
Browse files Browse the repository at this point in the history
Update to 1.5.21 and fix iterate on auto-update
  • Loading branch information
jtdub authored Jun 13, 2023
2 parents 54e59bf + 828c0bc commit 845b3b6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/auto-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ jobs:
exit 0
else
echo "Building nautobot-lab:$NAUTOBOT_VERSION"
docker build -t networktocode/nautobot-lab:${NAUTOBOT_VERSION} .
docker build \
--build-arg NAUTOBOT_VERSION=${NAUTOBOT_VERSION} \
-t networktocode/nautobot-lab:${NAUTOBOT_VERSION} .
echo "Building nautobot-lab:latest with $NAUTOBOT_VERSION"
docker build -t networktocode/nautobot-lab:latest .
echo "Logging into Docker Hub"
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM public.ecr.aws/ubuntu/ubuntu:22.04_stable

ENV NAUTOBOT_VERSION="1.5.20"
ARG NAUTOBOT_VERSION="1.5.21"

ENV NAUTOBOT_VERSION=${NAUTOBOT_VERSION}

ENV NAUTOBOT_ROOT="/opt/nautobot"

Expand Down

0 comments on commit 845b3b6

Please sign in to comment.