FROM node:14.13.1-slim as base

ARG VERSION=5.2.1

MAINTAINER Boris Babiy <borys.babii.sme@sonymusic.com>
LABEL version=$VERSION
LABEL description="The auth0-deploy-cli tool supports the importing and \
exporting of Auth0 Tenant configuration data."

RUN DEBIAN_FRONTEND=noninteractive apt-get update \
    && apt-get install --no-install-recommends -yq python3-pip python3-setuptools \
    && pip3 install awscli \
    && npm i -g auth0-deploy-cli@$VERSION

COPY client.json client.json
COPY entrypoint.sh entrypoint.sh

ENTRYPOINT ["/entrypoint.sh"]
