Updated .gitignore and removed docker stuff, since we are not using it.
This commit is contained in:
parent
5a67f1c732
commit
1a4af0c766
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -1,5 +1,7 @@
|
|||||||
*.py text eol=lf
|
*.py text eol=lf
|
||||||
*.js text eol=lf
|
*.js text eol=lf
|
||||||
*.sh text eol=lf
|
*.sh text eol=lf
|
||||||
|
*.json text eol=lf
|
||||||
*.png binary
|
*.png binary
|
||||||
*.jpg binary
|
*.jpg binary
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +0,0 @@
|
|||||||
version: '3'
|
|
||||||
services:
|
|
||||||
sebibot:
|
|
||||||
build: .
|
|
||||||
volumes:
|
|
||||||
- .:/bot
|
|
||||||
19
dockerfile
19
dockerfile
@ -1,19 +0,0 @@
|
|||||||
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","src"]
|
|
||||||
Loading…
x
Reference in New Issue
Block a user