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 c98e48c commit 539b8f2Copy full SHA for 539b8f2
2 files changed
examples/plugins/example_plugin/Dockerfile
@@ -0,0 +1,9 @@
1
+# Example of including plugins into the dstack server Docker image
2
+FROM dstackai/dstack:latest
3
+
4
+# Installing plugin from Docker context
5
+COPY . plugins/example_plugin
6
+RUN uv tool install "dstack[all]" --with plugins/example_plugin
7
8
+# Installing some other plugins from pypi/git
9
+# RUN uv tool install "dstack[all]" --with plugin1 --with plugin2
examples/plugins/example_plugin/enterprise.Dockerfile
+# Example of including plugins into the dstack Enterprise Docker image
+FROM ghcr.io/dstackai/dstack-enterprise:latest
+RUN uv pip install plugins/example_plugin
+# RUN uv pip install plugin-name
0 commit comments