8 lines
329 B
Text
8 lines
329 B
Text
# Build: podman build -t code.philo.ydns.eu/philorg/python-ci -f Containerfile.ci
|
|
FROM code.philo.ydns.eu/philorg/trixie_python:latest
|
|
|
|
RUN apt-get -y --no-install-recommends install nodejs git python3-pytest python3-httpx buildah podman curl && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/listsd/* && \
|
|
rm -rf /root/.cache
|
|
|