Moved docker related files

This commit is contained in:
2022-11-10 07:54:20 +01:00
parent 7bb407f2d7
commit 8fe38c451e
6 changed files with 4 additions and 164 deletions

View File

@@ -1,18 +0,0 @@
# syntax=docker/dockerfile:1
FROM python:3.10.4-alpine
WORKDIR /app
COPY ./dist/bot/build/ .
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]
CMD [ "bash", "/app/bot/bot"]