From 9ea37182c47710c7928b49fef71d9bf096fa8c1c Mon Sep 17 00:00:00 2001 From: Jan Koppe Date: Sat, 27 Jan 2024 12:59:33 +0100 Subject: [PATCH] Ah, a license would be kinda neat, right? --- Dockerfile | 2 +- LICENSE | 21 +++++++++++++++++++++ README.md | 4 ++++ 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 LICENSE diff --git a/Dockerfile b/Dockerfile index 5244cfe..3abd525 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:alpine ENV WORKERS=4 RUN mkdir /app && adduser -D app WORKDIR /app -COPY requirements.txt /app +COPY requirements.txt LICENSE /app RUN pip install -r requirements.txt COPY app.py /app USER app diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f244ef4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Chaos-West TV + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md index 3ab5e83..07d565f 100644 --- a/README.md +++ b/README.md @@ -7,3 +7,7 @@ As we don't have a physical space, we look at the current Jitsi Lounge status, a ## WTF. Could this have been a cronjob, writing some JSON file to disk? Yes. But we're paying for the whole CPU, so we're gonna use the whole CPU, damnit! + +## License + +This software is available under MIT License, see `LICENSE` file. \ No newline at end of file