Skip to content

Commit f07a576

Browse files
committedOct 26, 2022
[Docker] Migrate aws to python
1 parent e0f5560 commit f07a576

File tree

6 files changed

+30
-18
lines changed

6 files changed

+30
-18
lines changed
 

‎Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ COPY --from=base /opt/venv /opt/venv
3030
# Add default config files
3131
COPY octobot/config /octobot/octobot/config
3232

33-
COPY docker/*.sh /octobot/
33+
COPY docker/* /octobot/
3434

3535
# 1. Install requirements
3636
# 2. Add cloudflare gpg key and add cloudflare repo in apt repositories (from https://pkg.cloudflare.com/index.html)
@@ -44,7 +44,7 @@ RUN apt-get update \
4444
&& curl -fsSL https://pkg.cloudflare.com/cloudflare-main.gpg | tee /usr/share/keyrings/cloudflare-main.gpg >/dev/null \
4545
&& echo 'deb [signed-by=/usr/share/keyrings/cloudflare-main.gpg] https://pkg.cloudflare.com/cloudflared buster main' | tee /etc/apt/sources.list.d/cloudflared.list \
4646
&& apt-get update \
47-
&& apt-get install -y --no-install-recommends jq curl cloudflared libxslt-dev libxcb-xinput0 libjpeg62-turbo-dev zlib1g-dev libblas-dev liblapack-dev libatlas-base-dev libopenjp2-7 libtiff-dev \
47+
&& apt-get install -y --no-install-recommends curl cloudflared libxslt-dev libxcb-xinput0 libjpeg62-turbo-dev zlib1g-dev libblas-dev liblapack-dev libatlas-base-dev libopenjp2-7 libtiff-dev \
4848
&& rm -rf /var/lib/apt/lists/* \
4949
&& ln -s /opt/venv/bin/OctoBot OctoBot # Make sure we use the virtualenv \
5050
&& chmod +x docker-entrypoint.sh

‎docker/aws.py

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import os
2+
import json
3+
import re
4+
from urllib.request import urlopen
5+
6+
7+
def remove_special_chars(input_string):
8+
return re.sub(r'[^a-zA-Z0-9_]', '', input_string)
9+
10+
11+
if __name__ == '__main__':
12+
# https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-metadata-endpoint-v4.html
13+
container_metadata_url = os.getenv("ECS_CONTAINER_METADATA_URI_V4", None)
14+
if container_metadata_url is not None:
15+
try:
16+
with urlopen(container_metadata_url + "/taskWithTags") as response:
17+
body = response.read()
18+
container_metadata = json.loads(body)
19+
with open('.env', 'w') as env_file:
20+
for key, value in container_metadata['TaskTags'].items():
21+
env_file.write(remove_special_chars(
22+
key) + "=" + value+"\n")
23+
except Exception as e:
24+
print("Error when requesting or parsing aws metadata")

‎docker/aws.sh

-10
This file was deleted.

‎docker/docker-entrypoint.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ if [[ -n "${OCTOBOT_CONFIG}" ]]; then
55
echo "$OCTOBOT_CONFIG" | tee /octobot/user/config.json >/dev/null
66
fi
77

8-
bash aws.sh
8+
python aws.py
9+
910
bash tunnel.sh
1011

1112
./OctoBot

‎docker/tunnel.sh

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash
22

3+
source .env
4+
35
export TUNNEL_LOGFILE=/root/cloudflared.log
46
export TUNNEL_LOGLEVEL=info
57

‎docker/util.sh

-5
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.