You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by ey...@apache.org on 2022/01/04 18:09:56 UTC

[incubator-age] branch master updated: Create Dockerfile (#164)

This is an automated email from the ASF dual-hosted git repository.

eya pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-age.git


The following commit(s) were added to refs/heads/master by this push:
     new 0fe482d  Create Dockerfile (#164)
0fe482d is described below

commit 0fe482d6171f33e16624a91052416de9d86af7e4
Author: joefagan <jo...@bitnine.net>
AuthorDate: Tue Jan 4 18:09:53 2022 +0000

    Create Dockerfile (#164)
    
    * Create Dockerfile
    
    * Add AGE to load automatically.
    
    Add to skip the 'CREATE EXTENSION' and 'LOAD' commands.
    
    Co-authored-by: Alex Kwak <ta...@kakao.com>
---
 Dockerfile                                         | 37 ++++++++++++++++++++++
 .../00-create-extension-age.sql                    | 19 +++++++++++
 2 files changed, 56 insertions(+)

diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..d1c04a5
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,37 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+
+FROM postgres:11
+
+RUN apt-get update 
+RUN apt-get install --assume-yes --no-install-recommends --no-install-suggests \
+  bison \
+  build-essential \
+  ca-certificates \
+  flex \
+  git \
+  postgresql-plpython3-11 \
+  postgresql-server-dev-11 
+
+RUN git clone https://github.com/apache/incubator-age /age 
+RUN cd /age && make install 
+
+COPY docker-entrypoint-initdb.d/00-create-extension-age.sql /docker-entrypoint-initdb.d/00-create-extension-age.sql
+
+CMD ["postgres", "-c", "shared_preload_libraries=age"]
\ No newline at end of file
diff --git a/docker-entrypoint-initdb.d/00-create-extension-age.sql b/docker-entrypoint-initdb.d/00-create-extension-age.sql
new file mode 100644
index 0000000..3ce5d6c
--- /dev/null
+++ b/docker-entrypoint-initdb.d/00-create-extension-age.sql
@@ -0,0 +1,19 @@
+--
+-- Licensed to the Apache Software Foundation (ASF) under one
+-- or more contributor license agreements.  See the NOTICE file
+-- distributed with this work for additional information
+-- regarding copyright ownership.  The ASF licenses this file
+-- to you under the Apache License, Version 2.0 (the
+-- "License"); you may not use this file except in compliance
+-- with the License.  You may obtain a copy of the License at
+--
+-- http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing, software
+-- distributed under the License is distributed on an "AS IS" BASIS,
+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+-- See the License for the specific language governing permissions and
+-- limitations under the License.
+--
+
+CREATE EXTENSION age;
\ No newline at end of file