1
0
Fork 0
firefox/security/nss/taskcluster/docker/gcc-4.4/Dockerfile
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

13 lines
419 B
Docker

FROM $DOCKER_IMAGE_PARENT
LABEL maintainer="Martin Thomson <martin.thomson@gmail.com>"
VOLUME /builds/worker/checkouts
VOLUME /builds/worker/.cache
RUN sed -e 's/focal/trusty/' /etc/apt/sources.list > /etc/apt/sources.list.d/trusty.list \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
g++-4.4 \
gcc-4.4 \
&& rm -rf /var/lib/apt/lists/* \
&& apt-get autoremove -y && apt-get clean -y