From d5395eb9d177503ad0678d0fba658aefe9f4590d Mon Sep 17 00:00:00 2001 From: Matthew Lopez <73856503+MatthewL246@users.noreply.github.com> Date: Mon, 1 Jul 2024 15:32:24 -0400 Subject: [PATCH] chore: separate app_dir and build_string arguments for readability --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8d3c4c1..26dd3fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,8 @@ ARG app_dir="/home/go/app" # * Building the application FROM golang:1.22-alpine3.20 AS build -ARG app_dir build_string=pretendo.friends.docker +ARG app_dir +ARG build_string=pretendo.friends.docker WORKDIR ${app_dir}