Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docker step to chef cloud build #22885

Merged
merged 17 commits into from
Oct 14, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add chef dockerfile
  • Loading branch information
FernandoLGuzman committed Sep 9, 2022
commit 83123498ffc5c6cdf4c035f574b6587a25cbe49c
16 changes: 16 additions & 0 deletions examples/chef/dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM debian:bullseye

RUN apt-get update && \
apt-get install -y \
libglib2.0-0 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

COPY examples/chef/tmp/rootnode_dimmablelight_bCwGYSDpoe /
COPY examples/chef/tmp/rootnode_dimmablelight_bCwGYSDpoe.map /
COPY examples/chef/tmp/rootnode_dimmablelight_bCwGYSDpoe.matter /
COPY examples/chef/tmp/rootnode_dimmablelight_bCwGYSDpoe_hashmeta.yaml /

ENV DBUS_SYSTEM_BUS_ADDRESS="unix:path=/var/run/dbus/system_bus_socket"

CMD ["/rootnode_dimmablelight_bCwGYSDpoe"]