File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ RUN python -m pip install pip -U ; pip install poetry ; poetry build
1212FROM $BASE_IMAGE
1313COPY --from=builder /opt/dist/ecs_composex-*.whl /opt/
1414WORKDIR /opt
15- RUN pip install pip -U --no-cache-dir && pip install wheel --no-cache-dir && pip install *.whl --no-cache-dir
15+ RUN pip install pip -U --no-cache-dir && pip install wheel --no-cache-dir && pip install *.whl --no-cache-dir;\
16+ pip --no-cache-dir install ecs-composex[ecrscan]
1617WORKDIR /tmp
1718ENTRYPOINT ["ecs-compose-x" ]
Original file line number Diff line number Diff line change @@ -12,5 +12,6 @@ RUN python -m pip install pip -U ; pip install poetry ; poetry build
1212FROM ${LAMBDA_IMAGE:-$BASE_IMAGE}
1313WORKDIR ${LAMBDA_TASK_ROOT:-/opt/}
1414COPY --from=builder /opt/dist/ecs_composex-*.whl ${LAMBDA_TASK_ROOT:-/opt/}/
15- RUN pip install pip -U --no-cache-dir && pip install wheel --no-cache-dir && pip install *.whl --no-cache-dir
15+ RUN pip install pip -U --no-cache-dir && pip install wheel --no-cache-dir && pip install *.whl --no-cache-dir ;\
16+ pip install --no-cache-dir ecs-composex[ecrscan]
1617CMD ["ecs_composex.macro.lambda_handler" ]
You can’t perform that action at this time.
0 commit comments