- Gave the package a descriptive name.
- Passed over with black once more.
- Created setup.py to install dependencies.
- Updated author to reflect repo ownership to Dusty.
- Changed `git` command to use the __url__ attribute.
- Changed music to use ogg vorbis instead of mp3, purely for
performance.
- Tried to make sure nothing broke.
- Updated dockerfile. Pretty sure we don't need it though...
20 lines
610 B
Plaintext
20 lines
610 B
Plaintext
FROM ubuntu:latest
|
|
ENV LC_ALL C
|
|
MAINTAINER PUFFDIP
|
|
|
|
ADD . /bot
|
|
WORKDIR /bot
|
|
RUN apt-get update && \
|
|
apt-get upgrade -y && \
|
|
apt-get autoremove -y && \
|
|
apt-get install software-properties-common -y
|
|
RUN add-apt-repository ppa:deadsnakes/ppa && \
|
|
apt-get update && apt-get install python3.6 && \
|
|
apt-get install python3-pip -y
|
|
RUN apt install git -y
|
|
RUN python3.6 -m pip install --upgrade pip && \
|
|
python3.6 -m pip install -r requirements.txt && \
|
|
python3.6 -m pip install -U git+https://github.com/Rapptz/discord.py@rewrite#egg=discord.py[voice]
|
|
|
|
cmd ["python3.6","-m","sebimachine"]
|