File tree 6 files changed +30
-18
lines changed
6 files changed +30
-18
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ COPY --from=base /opt/venv /opt/venv
30
30
# Add default config files
31
31
COPY octobot/config /octobot/octobot/config
32
32
33
- COPY docker/*.sh /octobot/
33
+ COPY docker/* /octobot/
34
34
35
35
# 1. Install requirements
36
36
# 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 \
44
44
&& curl -fsSL https://pkg.cloudflare.com/cloudflare-main.gpg | tee /usr/share/keyrings/cloudflare-main.gpg >/dev/null \
45
45
&& 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 \
46
46
&& 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 \
48
48
&& rm -rf /var/lib/apt/lists/* \
49
49
&& ln -s /opt/venv/bin/OctoBot OctoBot # Make sure we use the virtualenv \
50
50
&& chmod +x docker-entrypoint.sh
Original file line number Diff line number Diff line change
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" )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ if [[ -n "${OCTOBOT_CONFIG}" ]]; then
5
5
echo " $OCTOBOT_CONFIG " | tee /octobot/user/config.json > /dev/null
6
6
fi
7
7
8
- bash aws.sh
8
+ python aws.py
9
+
9
10
bash tunnel.sh
10
11
11
12
./OctoBot
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ source .env
4
+
3
5
export TUNNEL_LOGFILE=/root/cloudflared.log
4
6
export TUNNEL_LOGLEVEL=info
5
7
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments