12 lines
339 B
Docker
12 lines
339 B
Docker
ARG BASE_REPO="repo.nstart.local/library/"
|
|
ARG BASE_TAG="3.14-slim-trixie"
|
|
|
|
FROM ${BASE_REPO}python:${BASE_TAG}
|
|
|
|
COPY --chmod=007 ca/nstart.local.crt /usr/local/share/ca-certificates/nstart.local.crt
|
|
|
|
COPY apt/99ca /etc/apt/apt.conf.d/99ca
|
|
COPY apt/debian.sources /etc/apt/sources.list.d/debian.sources
|
|
|
|
COPY python/pip.conf /etc/pip.conf
|