9 lines
283 B
Text
9 lines
283 B
Text
|
# Build: podman build -t localhost/python-ci -f Containerfile.ci
|
||
|
FROM localhost/trixie_python
|
||
|
|
||
|
RUN apt-get -y --no-install-recommends install nodejs git python3-pytest python3-httpx buildah podman && \
|
||
|
apt-get clean && \
|
||
|
rm -rf /var/lib/apt/listsd/* && \
|
||
|
rm -rf /root/.cache
|
||
|
|