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
RUN mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)
127
128
VOLUME /var/lib/postgresql/data
128
129
130
+
COPY jsquery/ /opt/jsquery/
131
+
132
+
RUN apt-get update && apt-get install -y postgresql-server-dev-9.6
133
+
134
+
RUN cd /opt/jsquery \
135
+
&& make USE_PGXS=1 \
136
+
&& make USE_PGXS=1 install
137
+
129
138
COPY docker-entrypoint.sh /usr/local/bin/
130
-
RUN ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
139
+
RUN chmod 777 /usr/local/bin/docker-entrypoint.sh \
0 commit comments