Skip to content

Commit cf54e8a

Browse files
committed
Dockerizing the app for deployment
1 parent 0a744f9 commit cf54e8a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Dockerfile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM python:3.6.8-stretch
2+
3+
ADD cubebot.py /
4+
ADD requirements.txt /
5+
ADD functions /functions/
6+
7+
RUN pip install -r requirements.txt
8+
9+
CMD [ "python", "./cubebot.py" ]

0 commit comments

Comments
 (0)