mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-06-20 18:04:26 +02:00

- 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
14 lines
255 B
Docker
14 lines
255 B
Docker
ARG ORG=dockcross
|
|
FROM ${ORG}/base:latest
|
|
|
|
LABEL maintainer="Matt McCormick matt@mmmccormick.com"
|
|
|
|
ENV WINEARCH=win64
|
|
ARG MXE_TARGET_ARCH=x86_64
|
|
ARG MXE_TARGET_THREAD=
|
|
ARG MXE_TARGET_LINK=shared
|
|
|
|
#include "common.windows"
|
|
|
|
#include "common.label-and-env"
|