Skip to content
This repository was archived by the owner on Sep 15, 2021. It is now read-only.

Commit 79adfea

Browse files
committed
initial commit
1 parent 083af2e commit 79adfea

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM python:3.5
2+
MAINTAINER victorbalssa <balssa_v@etna-alternance.net>
3+
4+
ADD ./requirements.txt /bot/requirements.txt
5+
WORKDIR /bot
6+
RUN pip install --upgrade pip
7+
RUN pip install --no-cache-dir -r requirements.txt

requirement.txt

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
requests==2.13.0
2+
slackclient==1.0.5
3+
asyncio==3.4.3
4+
appdirs==1.4.3
5+
packaging==16.8
6+
pyparsing==2.2.0
7+
six==1.10.0
8+
discord.py==0.16.12
9+
websocket-client==0.40.0
10+
pytest==3.2.3

0 commit comments

Comments
 (0)