# syntax=docker/dockerfile:1
FROM python:3.10.7-bullseye

WORKDIR /app
COPY ./dist/bot/build/ .

RUN pip install -r requirements.txt --extra-index-url https://pip.sh-edraft.de
RUN apt-get update -y
RUN apt-get install nano -y

ENV KDB_TOKEN=""
ENV KDB_PREFIX="!kdb "
ENV KDB_ENVIRONMENT="production"

CMD [ "bash", "/app/bot/bot"]