Skip to content

Commit

Permalink
Merge pull request #30 from ronivay/fix/no-test-plugins
Browse files Browse the repository at this point in the history
fix: do not install test plugins
  • Loading branch information
ronivay authored Nov 2, 2023
2 parents bdcb233 + 4a61af3 commit 77d1df3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN cd /etc/xen-orchestra && \
yarn build

# Install plugins
RUN find /etc/xen-orchestra/packages/ -maxdepth 1 -mindepth 1 -not -name "xo-server" -not -name "xo-web" -not -name "xo-server-cloud" -exec ln -s {} /etc/xen-orchestra/packages/xo-server/node_modules \;
RUN find /etc/xen-orchestra/packages/ -maxdepth 1 -mindepth 1 -not -name "xo-server" -not -name "xo-web" -not -name "xo-server-cloud" -not -name "xo-server-test" -not -name "xo-server-test-plugin" -exec ln -s {} /etc/xen-orchestra/packages/xo-server/node_modules \;

# Runner container
FROM node:18-bullseye-slim
Expand Down

0 comments on commit 77d1df3

Please sign in to comment.