We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
sometimes .net is blocked by company policy.
a docker file:
FROM bitnami/dotnet-sdk:latest RUN dotnet tool install -g MarkdownSnippets.Tool ENV PATH="$PATH:/app/.dotnet/tools" WORKDIR /app/repo ENTRYPOINT ["/bin/bash"]
But to use it with your files, requires a mounting via a volume. so a shell script is also helpful
docker build . -t markdown_snippets docker run -it --entrypoint sh -v <path-to-repo>:/app/repo markdown_snippets
The text was updated successfully, but these errors were encountered:
I want to insert at the line 0 of the Dockerfile something like:
Dockerfile
# While we'd prefer to use the official .Net docker image, it lacks Bash. # FROM microsoft/dotnet-sdk:latest
Sorry, something went wrong.
Does /bin/sh work on the MS-supplied Docker image?
/bin/sh
want to submit a PR to the docs?
No branches or pull requests
sometimes .net is blocked by company policy.
a docker file:
But to use it with your files, requires a mounting via a volume. so a shell script is also helpful
The text was updated successfully, but these errors were encountered: