All Containers are SHA256 pinned to ensure image.
- go 1.14.4 on Alpine 3.12
- latex on Alpine 3.12
To build the files run the following
latexmk -pdf file.tex
- Python 3.8.3 on Alpine 3.12
Will still want to build on top of this for the pip deps similar to ~
FROM docker.pkg.github.com/jmuldoon/docker/python-ci:latest
# If needed, install system dependencies here
# Add requirements.txt before rest of repo for caching
ADD requirements.txt /app/
WORKDIR /app
RUN pip install --no-cache-dir -r requirements.txt
ADD . /app