From 680055504f5bca6d30c27a3824a8c9eae159ee25 Mon Sep 17 00:00:00 2001 From: Dale Davies Date: Sat, 19 Mar 2022 21:42:57 +0000 Subject: [PATCH] Make dockerfile work with buildx --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6d3b8cf..cdfb608 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Start with the official composer image, copy application files and install # dependencies. -FROM composer AS builder +FROM --platform=$BUILDPLATFORM composer AS builder COPY jumpapp/ /app RUN composer install --no-dev \ --optimize-autoloader \