https://github.com/uipath/robot-docker
Docker images for UiPath Robot on Linux
https://github.com/uipath/robot-docker
Last synced: 3 months ago
JSON representation
Docker images for UiPath Robot on Linux
- Host: GitHub
- URL: https://github.com/uipath/robot-docker
- Owner: UiPath
- License: other
- Created: 2021-10-13T11:00:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-18T10:22:25.000Z (over 3 years ago)
- Last Synced: 2025-01-12T10:10:17.763Z (4 months ago)
- Language: Dockerfile
- Homepage: https://docs.uipath.com/robot/v2021.10/docs/linux-robots
- Size: 141 KB
- Stars: 4
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# UiPath Robot dockerfile examples
This repository shows various ways to use the UiPath Robot in conjunction with Docker containers.
These examples show you how to build a docker container with the UiPath Robot and Java or Python environment, or how can you use a self-signed certificate with your UiPath Orchestrator instance.
To build one of these images just use ```docker build``` command.For Java runtime run:
```docker build -t robot-java-runtime -f runtime/amd64/java-runtime.dockerfile .```
For Python runtime run:
```docker build -t robot-python-runtime -f runtime/amd64/python-runtime.dockerfile .```
To build the robot image with a self-signed certificate you need to copy the self-signed certificate to this folder. The name of the self signed certificate must be: ```rootCA.crt```. Then you can run:
```docker build -t robot-self-signed -f runtime/amd64/self-signed-cert.dockerfile .```