diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-29 19:54:41 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-29 19:54:41 +0300 |
commit | 73776864f5ee8793cd6b13c7cfa7493941fb7e6c (patch) | |
tree | 9f418c6dbf70d4bfa4561727e49a830343b009bd | |
parent | Makefile: best practices (diff) | |
download | math-server-73776864f5ee8793cd6b13c7cfa7493941fb7e6c.tar.gz math-server-73776864f5ee8793cd6b13c7cfa7493941fb7e6c.zip |
Makefile: style guide
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -7,13 +7,13 @@ SHELL := bash .DEFAULT_GOAL := all .SUFFIXES: -PROJECT = math_server +PROJECT := math_server # Enable buildx support: -export DOCKER_CLI_EXPERIMENTAL = enabled +export DOCKER_CLI_EXPERIMENTAL := enabled # Target platforms (used by buildx): -platforms = linux/amd64,linux/armhf +platforms := linux/amd64,linux/armhf # Docker Hub credentials: -DOCKER_USERNAME = egortensin +DOCKER_USERNAME := egortensin all: build |