From 5f9755d1ac5abd160a397ef75ae56c7e5e92fd4b Mon Sep 17 00:00:00 2001 From: Deimer M Date: Thu, 13 Aug 2026 10:37:11 -0500 Subject: [PATCH] docs: adding superset dockerfile patch article --- .../superset/superset_dockerfile_patch.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 docs/technical_documentation/how-tos/superset/superset_dockerfile_patch.rst diff --git a/docs/technical_documentation/how-tos/superset/superset_dockerfile_patch.rst b/docs/technical_documentation/how-tos/superset/superset_dockerfile_patch.rst new file mode 100644 index 0000000..ed67110 --- /dev/null +++ b/docs/technical_documentation/how-tos/superset/superset_dockerfile_patch.rst @@ -0,0 +1,19 @@ +.. _superset-dockerfile-patch: + +Modifying the Superset Dockerfile +********************************* + +To modify the Superset Dockerfile, use the `superset-dockerfile` patch. This patch takes effect when the `aspects-superset` image is built. + +.. code-block:: yaml + + name: custom-inline-plugin + version: 0.1.0 + patches: + superset-dockerfile: | + # Add custom Dockerfile instructions here + RUN pip install additional-package + # Example: Overriding default CMD or ENTRYPOINT + # CMD ["superset", "run", "-p", "8088", "--with-threads"] + +This patch appends your instructions to the final layer of the Dockerfile—making it ideal for installing dependencies or overriding the `CMD` or `ENTRYPOINT`.