Initial Commit

This commit is contained in:
2019-09-16 21:36:27 +02:00
commit a86462206b
17 changed files with 771 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM volkerraschek/build-image:1.4.0 AS build-env
ADD ./ /workspace
RUN make bin/linux/amd64/dhd
FROM busybox:latest
COPY --from=build-env /workspace/bin/linux/amd64/dhd /usr/bin/dhd
ENTRYPOINT [ "/usr/bin/dhd" ]