blob: 75458eb47e6b6c8b541975e376ca3f3acd3a5467 [file] [log] [blame]
FROM debian:trixie
ARG DEVICE_NAME
RUN apt-get update && \
apt-get install -y \
libglib2.0-0 \
libc6 \
libssl3 && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
COPY out/${DEVICE_NAME} /chef_device
COPY out/${DEVICE_NAME}.map /chef_device.map
COPY out/${DEVICE_NAME}.matter /chef_device.matter
COPY out/${DEVICE_NAME}_meta.yaml /chef_device_meta.yaml
ENV DBUS_SYSTEM_BUS_ADDRESS="unix:path=/var/run/dbus/system_bus_socket"
CMD ["/chef_device"]