sh_cpl/tests/custom/discord/dockerfile

16 lines
417 B
Plaintext
Raw Normal View History

2022-09-18 11:27:26 +02:00
# syntax=docker/dockerfile:1
FROM python:3.10
WORKDIR /app
COPY . .
RUN pip install cpl-cli --extra-index-url https://pip.sh-edraft.de
RUN pip install cpl-discord --extra-index-url https://pip.sh-edraft.de
RUN pip install cpl-query --extra-index-url https://pip.sh-edraft.de
RUN pip install cpl-translation --extra-index-url https://pip.sh-edraft.de
ENV DISCORD_TOKEN=""
ENV DISCORD_PREFIX=""
CMD [ "cpl", "run"]