We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4b9ec5 commit 52b5b2bCopy full SHA for 52b5b2b
Dockerfile
@@ -1,5 +1,7 @@
1
-FROM kennethreitz/pipenv
+FROM library/python:latest
2
+RUN apt update && apt install -y pipenv
3
+RUN mkdir -p /bot && cd /bot && git clone https://github.com/kyb3r/modmail .
4
+WORKDIR /bot
5
+RUN pipenv install
6
-COPY . /app
-
-CMD python3 bot.py
7
+CMD ["pipenv", "run", "python3", "bot.py"]
0 commit comments