-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the new Alchemy SDK and Infura Websocket Docker Container RPA Bots
- Loading branch information
Showing
18 changed files
with
6,909 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM node:22 | ||
MAINTAINER Joshua Gorospe <[email protected]> | ||
|
||
# Set a non-interactive frontend (useful for Docker builds) | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y software-properties-common python3-pip | ||
|
||
RUN apt-get update --fix-missing -y \ | ||
&& apt-get install python3 -y \ | ||
&& apt-get install python3-pip -y \ | ||
&& python3 -m pip install robotframework --break-system-packages | ||
|
||
RUN npm install npm --global | ||
|
||
RUN apt-get install -y \ | ||
jq \ | ||
wget \ | ||
curl | ||
|
||
ADD run-commands-inside-docker.sh /usr/local/bin/run-commands-inside-docker.sh | ||
RUN chmod +x /usr/local/bin/run-commands-inside-docker.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
services: | ||
|
||
docker-task-runner: | ||
build: | ||
context: . | ||
dockerfile: "Dockerfile.AlchemyBot" | ||
volumes: | ||
- "$PWD:/tasks" | ||
command: -inMemory | ||
network_mode: "bridge" |
Oops, something went wrong.