From 6603aca7f705acb4d24e72f67c55270e616c8b04 Mon Sep 17 00:00:00 2001 From: Ariel Rokem Date: Tue, 19 Mar 2024 15:04:50 -0700 Subject: [PATCH] Try to invert the order of things. --- cloudknot/templates/Dockerfile.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudknot/templates/Dockerfile.template b/cloudknot/templates/Dockerfile.template index ee2d9d9..24ad63c 100644 --- a/cloudknot/templates/Dockerfile.template +++ b/cloudknot/templates/Dockerfile.template @@ -4,7 +4,7 @@ ############################################################################### # Use official python base image -FROM --platform=linux/amd64 ${base_image} +FROM ${base_image} --platform=linux/amd64 # Install python dependencies COPY requirements.txt /tmp/