chore: separate app_dir and build_string arguments for readability

This commit is contained in:
Matthew Lopez 2024-07-01 15:32:24 -04:00
parent dd3c236880
commit d5395eb9d1
No known key found for this signature in database
GPG Key ID: 302A6EE3D63B7E0E

View File

@ -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}