diff options
author | Luca Matei Pintilie <luca@lucamatei.com> | 2024-03-23 16:22:25 +0000 |
---|---|---|
committer | Luca Matei Pintilie <luca@lucamatei.com> | 2024-03-23 16:22:25 +0000 |
commit | 5d6b5913a99607a147466b666c89af9a62814613 (patch) | |
tree | a6fccd5a080cfd855db169421b82588b45234915 | |
parent | f859e7959db3c94b1af74a4a133943ecae651e76 (diff) | |
download | steve-bot-5d6b5913a99607a147466b666c89af9a62814613.tar steve-bot-5d6b5913a99607a147466b666c89af9a62814613.tar.gz steve-bot-5d6b5913a99607a147466b666c89af9a62814613.tar.bz2 steve-bot-5d6b5913a99607a147466b666c89af9a62814613.tar.lz steve-bot-5d6b5913a99607a147466b666c89af9a62814613.tar.xz steve-bot-5d6b5913a99607a147466b666c89af9a62814613.tar.zst steve-bot-5d6b5913a99607a147466b666c89af9a62814613.zip |
Fix up containerfile a bit
-rw-r--r-- | Containerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Containerfile b/Containerfile index 01d7b07..28ae58d 100644 --- a/Containerfile +++ b/Containerfile @@ -10,6 +10,7 @@ RUN xbps-install -Suy \ python3-colorama \ python3-dateutil \ python3-pytz \ + python3-grpcio \ python3-google-api-core \ python3-google-api-python-client \ python3-google-auth \ @@ -21,7 +22,7 @@ RUN xbps-install -Suy \ python3-virtualenv \ python3-youtube-dl -RUN useradd --no-create-home --shell /bin/sh app +RUN useradd --create-home --shell /bin/sh app USER app WORKDIR /app |