Add docker environment
This commit is contained in:
parent
b6d6513765
commit
5e4d72145f
4
docker-compose.yml
Normal file
4
docker-compose.yml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
version: "3"
|
||||||
|
services:
|
||||||
|
bot:
|
||||||
|
build: .
|
||||||
19
dockerfile
Normal file
19
dockerfile
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
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","run.py"]
|
||||||
2
requirements.txt
Normal file
2
requirements.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
yarl<1.2
|
||||||
|
numpy==1.14.0
|
||||||
@ -2,8 +2,7 @@
|
|||||||
# -*- coding: <encoding name> -*-
|
# -*- coding: <encoding name> -*-
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import psycopg2
|
|
||||||
import psycopg2.extensions
|
|
||||||
|
|
||||||
class LoadConfig:
|
class LoadConfig:
|
||||||
"""
|
"""
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user