Steps to Install SnapLogic Remote Python Executor (RPE) for Remote Python Script Snap

1. Make sure you have docker installed.

2. Change to this directory using "cd" command.

3. Build docker image using the following command. Do not forget the last "." meaning that you want to use the Dockerfile in the current directory.
sudo docker build --no-cache -t snaplogic_remote_python_executor .

4. Create and start a container using the command below. You may change the port and set a strong token. You can also specify the log location by adding "-v <host_log_dir>/remote_python_executor_log/:/opt/remote_python_executor_log/".
sudo docker run --memory-swap="-1" -dti -p 5301:5301 -e "REMOTE_PYTHON_EXECUTOR_TOKEN=" --name=remote_python_executor snaplogic_remote_python_executor
