You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Clean list files downloaded by apt-get update and wandering wars
- Added CMD with catalina.sh and safeguard entry script, to make sure its called by catalina.sh
- Replaced ENV_BASE_DIR by existing CATALINA_HOME
- Remove redundant port exposition
- Read checksum from file downloaded from the GN repository (to support war updates).
Copy file name to clipboardExpand all lines: 3.0.4/postgres/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
FROM geonetwork:3.0.4
2
2
3
-
RUN apt-get update && apt-get install -y postgresql-client
3
+
RUN apt-get update && apt-get install -y postgresql-client && \
4
+
apt-get clean && rm -rf /var/lib/apt/lists/*
4
5
5
6
#Set PostgreSQL as default GN DB
6
7
RUN sed -i -e 's#<import resource="../config-db/h2.xml"/>#<!--<import resource="../config-db/h2.xml"/> -->#g' $BASE_DIR/webapps/geonetwork/WEB-INF/config-node/srv.xml
Copy file name to clipboardExpand all lines: 3.0.5/postgres/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
FROM geonetwork:3.0.5
2
2
3
-
RUN apt-get update && apt-get install -y postgresql-client
3
+
RUN apt-get update && apt-get install -y postgresql-client && \
4
+
apt-get clean && rm -rf /var/lib/apt/lists/*
4
5
5
6
#Set PostgreSQL as default GN DB
6
7
RUN sed -i -e 's#<import resource="../config-db/h2.xml"/>#<!--<import resource="../config-db/h2.xml"/> -->#g' $BASE_DIR/webapps/geonetwork/WEB-INF/config-node/srv.xml
Copy file name to clipboardExpand all lines: 3.2.0/postgres/Dockerfile
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
FROM geonetwork:3.2.0
2
2
3
-
RUN apt-get update && apt-get install -y postgresql-client
3
+
RUN apt-get update && apt-get install -y postgresql-client && \
4
+
apt-get clean && rm -rf /var/lib/apt/lists/*
4
5
5
6
#Set PostgreSQL as default GN DB
6
7
RUN sed -i -e 's#<import resource="../config-db/h2.xml"/>#<!--<import resource="../config-db/h2.xml"/> -->#g' $BASE_DIR/webapps/geonetwork/WEB-INF/config-node/srv.xml
0 commit comments