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

Latest images in dockerhub do not have correct ENTRYPOINT #432

Closed
tkent opened this issue May 3, 2021 · 1 comment
Closed

Latest images in dockerhub do not have correct ENTRYPOINT #432

tkent opened this issue May 3, 2021 · 1 comment
Milestone

Comments

@tkent
Copy link

tkent commented May 3, 2021

The Dockerfile ENTRYPOINT for the latest tag (also 1.2.3) does not have the current ENTRYPOINT defined in this repo. Instead, the ENTRYPOINT is defined as:

 ENTRYPOINT ["/bin/sh" "-c" "dotnet rh.dll"]

(see here)

This results in the official image being unable to process arguments if the ENTRYPOINT is not overwritten.

Step to reproduce:

Running the below command will not show the help message, but rather a message that connection string was not provided.

docker run --rm dotnetroundhouse/roundhouse:1.2.3  --help

Running the command below, with the entrypoint overwritten, will correctly show the help message.

docker run --rm --entrypoint="dotnet" dotnetroundhouse/roundhouse:1.2.3  rh.dll --help
@erikbra erikbra added this to the 1.3.0 milestone Sep 12, 2021
@erikbra
Copy link
Member

erikbra commented Sep 12, 2021

Solved in https://github.com/chucknorris/roundhouse/releases/tag/1.3.0

New images:

docker pull dotnetroundhouse/roundhouse:latest
docker pull dotnetroundhouse/roundhouse:1.3.0

@erikbra erikbra closed this as completed Sep 12, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants