File: Dockerfile.gcc-5

package info (click to toggle)
distcc 3.4%2Breally3.4-13
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 4,740 kB
  • sloc: ansic: 27,888; python: 6,460; sh: 4,330; makefile: 912; perl: 68
file content (11 lines) | stat: -rw-r--r-- 333 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
FROM distcc/base

LABEL maintainer=""

RUN apt-get update && \
    apt-get install gcc-5 \
                    gcc-multilib \
                    g++-5 \
                    g++-multilib && \
    update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 50 && \
    update-alternatives --install /usr/bin/cc cc /usr/bin/gcc-5 50