Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
* Turning from CMD to ENTRYPOINT
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Berger <[email protected]>
  • Loading branch information
chrberger committed Sep 28, 2018
1 parent bd1c7e7 commit b5e3554
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ MAINTAINER Christian Berger "[email protected]"

WORKDIR /usr/bin
COPY --from=builder /tmp/opendlv-device-gps-pos-dest/bin/opendlv-device-gps-pos .
CMD ["/usr/bin/opendlv-device-gps-pos"]
ENTRYPOINT ["/usr/bin/opendlv-device-gps-pos"]

2 changes: 1 addition & 1 deletion Dockerfile.amd64
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ MAINTAINER Christian Berger "[email protected]"

WORKDIR /usr/bin
COPY --from=builder /tmp/opendlv-device-gps-pos-dest/bin/opendlv-device-gps-pos .
CMD ["/usr/bin/opendlv-device-gps-pos"]
ENTRYPOINT ["/usr/bin/opendlv-device-gps-pos"]

2 changes: 1 addition & 1 deletion Dockerfile.armhf
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ MAINTAINER Christian Berger "[email protected]"

WORKDIR /usr/bin
COPY --from=builder /tmp/opendlv-device-gps-pos-dest/bin/opendlv-device-gps-pos .
CMD ["/usr/bin/opendlv-device-gps-pos"]
ENTRYPOINT ["/usr/bin/opendlv-device-gps-pos"]

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ the messages according to OpenDLV Standard Message Set into session 111 in
Google Protobuf format, simply start it as follows:

```
docker run --init --rm --net=host chalmersrevere/opendlv-device-gps-pos-multi:v0.0.5 opendlv-device-gps-pos --pos_ip=192.168.1.77 --pos_port=5602 --cid=111 --verbose
docker run --init --rm --net=host chalmersrevere/opendlv-device-gps-pos-multi:v0.0.6 --pos_ip=192.168.1.77 --pos_port=5602 --cid=111 --verbose
```

## Build from sources on the example of Ubuntu 16.04 LTS
Expand Down

0 comments on commit b5e3554

Please sign in to comment.