minebot/Dockerfile

17 lines
396 B
Docker
Raw Permalink Normal View History

2020-12-25 05:23:24 +00:00
FROM python:3.9-slim AS install
RUN apt update
RUN apt install -y build-essential
RUN pip install discord
RUN pip install 'python-socketio>=4.0,<5.0' # heavynoode must be on an old version, because 5 doesn't work
FROM python:3.9-slim
WORKDIR /minebot
CMD ["python", "bot.py"]
COPY --from=install /usr/local/lib/python3.9/site-packages /usr/local/lib/python3.9/site-packages
COPY . /minebot