From f8fda55b1ac8f318058af13afa720045cee025e9 Mon Sep 17 00:00:00 2001 From: dcaputo-harmoni <65166251+dcaputo-harmoni@users.noreply.github.com> Date: Tue, 29 Mar 2022 22:20:00 -0400 Subject: [PATCH 1/2] Create LICENSE --- LICENSE | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..25cfb46 --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +MIT License + +Copyright (c) 2016-present, Francois Zaninotto, Marmelab +Copyright (c) 2020-present, Raphael Scheible + +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. From 2b0a424246e82856c444ba7d8f43728c8de07145 Mon Sep 17 00:00:00 2001 From: Bernhard Kaindl Date: Sat, 16 Apr 2022 14:44:45 +0000 Subject: [PATCH 2/2] Dockerfile: Add libpq5 as needed for starting it on armhf --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0978202..6c3a24c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,7 @@ RUN apt-get update && apt-get install -y curl && \ curl -sL https://deb.nodesource.com/setup_17.x | bash - RUN apt-get update && apt-get install -y \ + libpq5 \ nodejs \ node-typescript \ jq \ @@ -30,4 +31,4 @@ ENV PGRST_DB_SCHEMA=public ENV PGRST_DB_ANON_ROLE=anon ENV PGRST_SERVER_HOST=127.0.0.1 -CMD ["bash", "start.sh"] \ No newline at end of file +CMD ["bash", "start.sh"]