From 1a4af0c766fbdccbd475c4bf0615db1f4d37e889 Mon Sep 17 00:00:00 2001 From: neko404notfound Date: Thu, 21 Jun 2018 09:26:41 +0100 Subject: [PATCH] Updated .gitignore and removed docker stuff, since we are not using it. --- .gitattributes | 12 +++++++----- docker-compose.yml | 6 ------ dockerfile | 19 ------------------- 3 files changed, 7 insertions(+), 30 deletions(-) delete mode 100644 docker-compose.yml delete mode 100644 dockerfile diff --git a/.gitattributes b/.gitattributes index e269ae0..be26761 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,7 @@ -*.py text eol=lf -*.js text eol=lf -*.sh text eol=lf -*.png binary -*.jpg binary +*.py text eol=lf +*.js text eol=lf +*.sh text eol=lf +*.json text eol=lf +*.png binary +*.jpg binary + diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index f81019b..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,6 +0,0 @@ -version: '3' -services: - sebibot: - build: . - volumes: - - .:/bot diff --git a/dockerfile b/dockerfile deleted file mode 100644 index 87c38ca..0000000 --- a/dockerfile +++ /dev/null @@ -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"]