From 59734c408a7229e9cae92f85632a6c1417b806f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rathgeber=20St=C3=A9phane?= Date: Sun, 22 Jan 2023 21:55:50 +0100 Subject: [PATCH 1/2] Update eb version --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3b6fc48..8802cf3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ -FROM alpine:3.6 +FROM alpine:latest RUN apk -v --no-cache add \ git \ less \ openssh-client \ - py-pip \ - python \ + py3-pip \ + python3 \ && \ - pip install --upgrade awsebcli + pip3 install --upgrade awsebcli --ignore-installed six VOLUME /root/.aws VOLUME /project WORKDIR /project From 3cbad2d7c992bf4f7fafeb1fbbea8eedb072d006 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rathgeber=20St=C3=A9phane?= Date: Sun, 22 Jan 2023 22:11:23 +0100 Subject: [PATCH 2/2] eb init --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 8802cf3..69da3bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,7 @@ RUN apk -v --no-cache add \ python3 \ && \ pip3 install --upgrade awsebcli --ignore-installed six +RUN git config --global --add safe.directory /project VOLUME /root/.aws VOLUME /project WORKDIR /project