aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorjwansek <37976823+jwansek@users.noreply.github.com>2020-11-24 00:22:06 +0000
committerGitHub <noreply@github.com>2020-11-24 00:22:06 +0000
commit5a0b6637975d430dfd1be5894df89d56df215b09 (patch)
treeabc405c6a636a0b42b91c52fb5ac9be07338078a /Dockerfile
parent7677d95c729ab88080d742461fcb3b07c8b421f7 (diff)
parente2b1386a53c34812d1f8919a5c0ba67f9781a131 (diff)
downloadSmallYTChannelBot-5a0b6637975d430dfd1be5894df89d56df215b09.tar.gz
SmallYTChannelBot-5a0b6637975d430dfd1be5894df89d56df215b09.zip
Merge pull request #1 from jwansek/MySQLdev
merge MySQL branch
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..1c8d59f
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,9 @@
+FROM ubuntu:latest
+MAINTAINER Eden Attenborough "eddie.atten.ea29@gmail.com"
+RUN apt-get update -y
+RUN apt-get install -y python3-pip python-dev build-essential
+COPY . /app
+WORKDIR /app
+RUN pip3 install -r requirements.txt
+ENTRYPOINT ["python3"]
+CMD ["subreddit.py"]