From 8ac30a7018d499aadd3a7cd837a9caab55450614 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sat, 3 Oct 2020 12:54:09 -0400 Subject: [PATCH] add LICENSE and Dockerfile --- Dockerfile | 12 ++++++++++++ LICENSE | 13 +++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 Dockerfile create mode 100644 LICENSE diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4ea8a97 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM python:3.8-slim + +RUN apt-get -qq update && \ + apt-get -qq -y install ffmpeg && \ + apt-get autoclean && \ + rm -rf /var/lib/apt/lists/* + +COPY ./ /app/ +WORKDIR /app +RUN pip3 install -r requirements.txt + +ENTRYPOINT ["python3", "/app/main.py", "--config_file", "/app/config/config.ini"] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..caca53d --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + +Copyright (C) 2020 Sam Zick + +Everyone is permitted to copy and distribute verbatim or modified +copies of this license document, and changing it is allowed as long +as the name is changed. + +DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + +0. You just DO WHAT THE FUCK YOU WANT TO.