Skip to content

Commit e9efbdf

Browse files
committed
Change line order in Dockerfile to unify ARG/ENV convention
1 parent 6febf13 commit e9efbdf

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

scripts/Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
ARG DEBIAN_RELEASE=stretch
22
ARG BUILD_TYPE=cross
3+
34
FROM ev3dev-lang-java:jdk-$BUILD_TYPE-$DEBIAN_RELEASE
4-
ARG DEBIAN_RELEASE
5-
ARG BUILD_TYPE
65

6+
# inherited
7+
ARG DEBIAN_RELEASE
78
ENV BUILDER_DISTRO=$DEBIAN_RELEASE
9+
10+
# inherited
11+
ARG BUILD_TYPE
812
ENV BUILDER_TYPE=$BUILD_TYPE
913

1014
ARG commit=unknown

0 commit comments

Comments
 (0)