From 6bb90fd02e14f56ab826addbaae0cd55099647cf Mon Sep 17 00:00:00 2001 From: Roy Olav Purser Date: Sat, 25 May 2024 18:01:04 +0200 Subject: [PATCH] fix file permissions in container --- bot.py | 2 ++ install.sh | 3 +++ 2 files changed, 5 insertions(+) diff --git a/bot.py b/bot.py index c915e0a..321eec6 100644 --- a/bot.py +++ b/bot.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + import os from urllib.parse import urlparse, parse_qs import discord diff --git a/install.sh b/install.sh index d736945..5d396bb 100644 --- a/install.sh +++ b/install.sh @@ -1,5 +1,8 @@ #!/usr/bin/env sh +chmod 755 /app/start.sh +chmod 755 /app/bot.py + python3 -m venv /app/venv source /app/venv/bin/activate