Skip to content

Commit b56f9af

Browse files
committed
(docker) Remove equal sign, when no default value
1 parent 80bd342 commit b56f9af

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

dockerfiles/tue-env.Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ FROM base as builder
1515
# Build time arguments
1616
# BRANCH is the target branch if in PULL_REQUEST mode else it is the test branch
1717
ARG CI=false
18-
ARG BRANCH=
18+
ARG BRANCH
1919
ARG PULL_REQUEST=false
20-
ARG COMMIT=
21-
ARG REF_NAME=
20+
ARG COMMIT
21+
ARG REF_NAME
2222
# Default is empty and gives ROS1, for ROS2 use --build-arg ROS_VERSION=2
23-
ARG ROS_VERSION=
24-
ARG ROS_DISTRO=
23+
ARG ROS_VERSION
24+
ARG ROS_DISTRO
2525
# Default is empty and will result in the default targets repo
26-
ARG TARGETS_REPO=
26+
ARG TARGETS_REPO
2727
ARG CREATE_VENV=false
2828
ARG VENV_INCLUDE_SYSTEM_SITE_PACKAGES=false
29-
ARG OAUTH2_TOKEN=
29+
ARG OAUTH2_TOKEN
3030

3131
# Inform scripts that no questions should be asked and set some environment
3232
# variables to prevent warnings and errors

0 commit comments

Comments
 (0)