https://github.com/andreibarbuoz/uipath-docker-robot
https://github.com/andreibarbuoz/uipath-docker-robot
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/andreibarbuoz/uipath-docker-robot
- Owner: AndreiBarbuOz
- Created: 2019-06-25T07:56:56.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-09T06:26:04.000Z (almost 6 years ago)
- Last Synced: 2025-01-12T10:34:14.728Z (4 months ago)
- Size: 75.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dockerized robot build CFN template
CFN template used to build an UiPath robot in a Docker container
## Prerequisites
* AWS account with appropriate Role
* A Key pair for accessing the provisioned instance is needed## Purpose
The stack described in the CFN template provisions the necessary infrastructure to build a `Docker` image containing the UiPath robot and PowerShell module needed to communicate with Orchestrator
For this, an EC2 instance is launched and during its launch script, the [dockerized-robot repository](https://github.com/AndreiBarbuOz/dockerized-robot) is downloaded and the script is run
## Deployment
To build the docker image, there are 2 steps involved:
1. Create the Docker Repo stack from command line:```cmd
aws cloudformation create-stack --stack-name docker-image-repo --template-body file://docker-repo.yaml
```
2. Create the Docker image build stack:```cmd
aws cloudformation create-stack --stack-name docker-build --template-body file://docker-build.yaml --parameters file://docker-build-params.json --capabilities CAPABILITY_IAM
```*The total time it takes to build the Docker image is around 30 minutes.*