# Use an official Python runtime as a parent image
FROM node:12-alpine

# Set the working directory to /app
WORKDIR /app

# Install packages
RUN npm i yargs fs-extra auth0-deploy-cli auth0 glob --save --loglevel=error && mkdir /app/packages

# Copy app files
# COPY ["./modules/deploy_tool/config.json", "./modules/deploy_tool/index.js", "/app/"]

COPY config.json index.js /app/
