9 lines
212 B
Docker
9 lines
212 B
Docker
ARG BASE_REPO="repo.nstart.cloud/library/"
|
|
ARG BASE_TAG="3.14-slim-trixie"
|
|
|
|
FROM ${BASE_REPO}python:${BASE_TAG}
|
|
|
|
COPY apt/debian.sources /etc/apt/sources.list.d/debian.sources
|
|
|
|
COPY python/pip.conf /etc/pip.conf
|