From 351c0e9c207aa90efeafd26b5f83f532a0fdb2e4 Mon Sep 17 00:00:00 2001 From: hleroy Date: Tue, 16 Jul 2024 15:36:40 +0200 Subject: [PATCH] Added explanation regarding clearing ENTRYPOINT from the base image Co-authored-by: Bruno Alla --- {{cookiecutter.project_slug}}/compose/production/aws/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/{{cookiecutter.project_slug}}/compose/production/aws/Dockerfile b/{{cookiecutter.project_slug}}/compose/production/aws/Dockerfile index a215a575a..9c7b8a69a 100644 --- a/{{cookiecutter.project_slug}}/compose/production/aws/Dockerfile +++ b/{{cookiecutter.project_slug}}/compose/production/aws/Dockerfile @@ -1,5 +1,6 @@ FROM docker.io/amazon/aws-cli:2.17.0 +# Clear entrypoint from the base image, otherwise it's always calling the aws CLI ENTRYPOINT [] COPY ./compose/production/aws/maintenance /usr/local/bin/maintenance