fix(Dockerfile): changed name of the binary

This commit is contained in:
Markus Pesch 2019-09-24 14:56:49 +02:00
parent 7b038250b7
commit f9992ef7c5
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
1 changed files with 3 additions and 3 deletions

View File

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