Skip to content

Commit

Permalink
added Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Setlerr committed Aug 5, 2022
1 parent 4915994 commit 77721b9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 43 deletions.
24 changes: 0 additions & 24 deletions .circleci/config.yml

This file was deleted.

5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM python:3.9
COPY . /app
WORKDIR /app
RUN python3 -m pip install -U nextcord
CMD ["python", "./main.py"]
9 changes: 1 addition & 8 deletions cogs/create.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
from email import message
import numbers
import nextcord
import linecache as lc

from nextcord.ext import tasks, commands
from nextcord.utils import get
from datetime import datetime
from time import gmtime, strftime
from array import array
from nextcord.ext import commands

intents = nextcord.Intents.all()
intents.members = True
Expand Down
4 changes: 1 addition & 3 deletions cogs/ping.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import numbers
import nextcord
import linecache as lc

from nextcord.ext import tasks, commands
from nextcord.ext import commands

intents = nextcord.Intents.all()
intents.members = True
Expand Down
9 changes: 1 addition & 8 deletions cogs/register.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
from email import message
import numbers
import nextcord
import linecache as lc

from nextcord.ext import tasks, commands
from nextcord.utils import get
from datetime import datetime
from time import gmtime, strftime
from array import array
from nextcord.ext import commands

intents = nextcord.Intents.all()
intents.members = True
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
os

0 comments on commit 77721b9

Please sign in to comment.