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
APT installs are time consuming, see for instance this log. It can be sped up by creating a Docker container on hub.docker.com/orgs/compwa and pulling it in the workflow with container.image.
container.image
Example for that specific log (2m48s).
Create a Dockerfile:
Dockerfile
FROM python:3.8 RUN apt-get -y update # https://serverfault.com/a/992421 RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install tzdata RUN apt-get -y install inkscape latexmk make texlive-fonts-extra texlive-xetex xindy RUN apt-get autoclean -y RUN apt-get autoremove -y RUN rm -rf /var/lib/apt/lists/*
Build the image and push to Docker Hub:
REPO=polarimetry JOB=fast-pdf docker build -t compwa/$REPO-$JOB . docker push compwa/$REPO-$JOB
This workflow was sped up by two minutes, see this log (57s container initialisation).
The text was updated successfully, but these errors were encountered:
apt install
Unfortunately, Docker is retiring its Free Team organization tier as of April 14th, 2023. https://web.docker.com/rs/790-SSB-375/images/privatereposfaq.pdf
Sorry, something went wrong.
The plan to sunset Free Team has been reverted 🎉
But better: use https://ghcr.io instead
Successfully merging a pull request may close this issue.
APT installs are time consuming, see for instance this log. It can be sped up by creating a Docker container on hub.docker.com/orgs/compwa and pulling it in the workflow with
container.image
.Example for that specific log (2m48s).
Create a
Dockerfile
:Build the image and push to Docker Hub:
This workflow was sped up by two minutes, see this log (57s container initialisation).
The text was updated successfully, but these errors were encountered: