-
Notifications
You must be signed in to change notification settings - Fork 3
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
A collection of post-installation steps #133
Comments
ttps://quarto.org/download/latest/quarto-linux-amd64.deb redirects to the last stable version (https://github.com/quarto-dev/quarto-cli/releases/download/v1.2.475/quarto-1.2.475-linux-amd64.deb at the time of writing). My experience is that quarto is still very new and development is fast. Because of this, I'm always using the pre-release (https://github.com/quarto-dev/quarto-cli/releases) and, in my Dockerfile, I have
|
Maybe we should remove "RUN" to cater for #134 |
@chainsawriot perhaps there should be one text file generation function that can simply insert "RUN", "ENV" and other keywords if it is generating a Dockerfile and %post/%environment, etc. sections if it is generating Appatiner/Singularity definition. So maybe I should not have renamed COPY to FILES and RUN to POST in the |
Add `.normalize_docker_steps` ref #133
RUN apt-get -y install pandoc pandoc-citeproc texlive
RUN apt-get install -y curl git && curl -LO https://quarto.org/download/latest/quarto-linux-amd64.deb && dpkg -i quarto-linux-amd64.deb && quarto install tool tinytex && rm quarto-linux-amd64.deb
RUN rm -rf /var/lib/apt/lists/* && if [ -d "$CACHE_PATH" ]; then rm -rf $CACHE_PATH; fi
RUN apt-get -y install make
The text was updated successfully, but these errors were encountered: