File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 2
2
# Image with pre-built tools
3
3
#
4
4
FROM neondatabase/compute-tools:latest AS compute-deps
5
- # Only to get ready zenith_ctl binary as deppendency
5
+ # Only to get ready compute_ctl binary as deppendency
6
6
7
7
#
8
8
# Image with Postgres build deps
@@ -56,11 +56,14 @@ RUN mkdir /var/db && useradd -m -d /var/db/postgres postgres && \
56
56
COPY --from=pg-build /pg/compute_build/postgres_bin /usr/local
57
57
58
58
# Copy binaries from compute-tools
59
- COPY --from=compute-deps /usr/local/bin/zenith_ctl /usr/local/bin/zenith_ctl
59
+ COPY --from=compute-deps /usr/local/bin/compute_ctl /usr/local/bin/compute_ctl
60
+
61
+ # XXX: temporary symlink for compatibility with old control-plane
62
+ RUN ln -s /usr/local/bin/compute_ctl /usr/local/bin/zenith_ctl
60
63
61
64
# Add postgres shared objects to the search path
62
65
RUN echo '/usr/local/lib' >> /etc/ld.so.conf && /sbin/ldconfig
63
66
64
67
USER postgres
65
68
66
- ENTRYPOINT ["/usr/local/bin/zenith_ctl " ]
69
+ ENTRYPOINT ["/usr/local/bin/compute_ctl " ]
You can’t perform that action at this time.
0 commit comments