diff --git a/Dockerfile b/Dockerfile index 7b68d63..e9d57bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,11 @@ FROM python:3.8-slim RUN apt-get update && apt-get install -y jq zip git +RUN git config --system --add safe.directory /github/workspace + RUN pip install awscli ADD entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh + ENTRYPOINT ["/entrypoint.sh"]