mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-06-21 10:23:34 +02:00
COMP: Remove docker build warning
- LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format (line 42) """ The new format for declaring environment variables in Dockerfiles is ENV key=value. This format, where the key and value are separated by an equals sign (=), is the recommended approach. The older format, ENV key value (with a space as a separator), is deprecated. """ -- google search
This commit is contained in:
@ -3,7 +3,7 @@ FROM ${ORG}/base:latest
|
||||
|
||||
LABEL maintainer="Matt McCormick matt@mmmccormick.com"
|
||||
|
||||
ENV WINEARCH win64
|
||||
ENV WINEARCH=win64
|
||||
ARG MXE_TARGET_ARCH=x86_64
|
||||
ARG MXE_TARGET_THREAD=
|
||||
ARG MXE_TARGET_LINK=shared
|
||||
|
Reference in New Issue
Block a user