convert arg vars to env vars
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Remy Moll 2023-10-12 12:42:40 +02:00
parent cbaedb04cb
commit c58e256194
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
FROM python:3-slim
ENV DOCKERIZED=true
ARG BOT_VERSION
# set at build time
ENV BOT_VERSION=$BOT_VERSION
WORKDIR /app
RUN pip install pipenv

View File

@ -37,7 +37,7 @@ class StatusHandler(BaseHandler):
reply_markup = InlineKeyboardMarkup(keyboard)
delta = str(datetime.datetime.now() - self.start_time)
message = "BeebBop, this is Norbit...\n"
message = "BeebBop, this is Norbit\n"
try:
ip = httpx.get('https://api.ipify.org').text