From ccbb4be03893e95ef9dd268294869662c79f1ea7 Mon Sep 17 00:00:00 2001 From: Toshiya-Kato Date: Mon, 3 Jun 2024 19:19:14 +0900 Subject: [PATCH] Fix the order of ARG in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d8f4676..8bf18e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.20 -ARG REVIEWDOG_VERSION=v0.17.4 ARG TERRAFORM_VERSION=1.7.3 +ARG REVIEWDOG_VERSION=v0.17.4 SHELL ["/bin/ash", "-eo", "pipefail", "-c"]