sh_discord_bot/kdb-bot/dockerfile

22 lines
617 B
Plaintext
Raw Normal View History

2022-11-18 09:50:06 +01:00
# syntax=docker/dockerfile:1
2023-01-14 00:18:50 +01:00
FROM python:3.10.4-alpine
2022-11-18 09:50:06 +01:00
WORKDIR /app
2022-12-23 16:41:28 +01:00
COPY ./dist/bot/build/kdb-bot/ .
COPY ./dist/bot/build/requirements.txt .
2022-11-18 09:50:06 +01:00
RUN python -m pip install --upgrade pip
RUN apk update
RUN apk add --update alpine-sdk linux-headers
RUN apk add bash
RUN apk add nano
RUN pip install -r requirements.txt --extra-index-url https://pip.sh-edraft.de
RUN pip install flask[async]
2023-03-20 14:40:56 +01:00
# RUN pip install dnspython==2.2.1 # https://stackoverflow.com/questions/75137717/eventlet-dns-python-attribute-error-module-dns-rdtypes-has-no-attribute-any
# ^ probably fixed py package updates
2022-11-18 09:50:06 +01:00
CMD [ "bash", "/app/bot/bot"]