We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3137d57 commit ba4bb2bCopy full SHA for ba4bb2b
docker/debian-dev/Dockerfile
@@ -45,10 +45,14 @@ ARG ENTRYPOINT_PATH=./docker-entrypoint.sh
45
ARG INSTALL_BROTLI=./install-brotli.sh
46
ARG CHECK_STANDALONE_CONFIG=./check_standalone_config.sh
47
48
+# Install the runtime libyaml package
49
+RUN apt-get -y update --fix-missing \
50
+ && apt-get install -y libldap2-dev libyaml-0-2 \
51
+ && apt-get remove --purge --auto-remove -y
52
+
53
COPY --from=build /usr/local/apisix /usr/local/apisix
54
COPY --from=build /usr/local/openresty /usr/local/openresty
55
COPY --from=build /usr/bin/apisix /usr/bin/apisix
-COPY --from=build /usr/lib/x86_64-linux-gnu/libyaml* /usr/local/lib/
56
57
COPY ${INSTALL_BROTLI} /install-brotli.sh
58
RUN chmod +x /install-brotli.sh \
0 commit comments