|
1 | | -FROM debian:7 |
| 1 | +FROM --platform=linux/amd64 debian:stretch |
2 | 2 |
|
3 | 3 | ENV DEBIAN_FRONTEND noninteractive |
4 | 4 |
|
5 | 5 | # Installing necessary packages |
6 | | -RUN echo "deb http://archive.debian.org/debian/ wheezy contrib main non-free" > /etc/apt/sources.list && \ |
7 | | - echo "deb-src http://archive.debian.org/debian/ wheezy contrib main non-free" >> /etc/apt/sources.list && \ |
8 | | - apt-get update && apt-get install -y apt-utils && \ |
9 | | - apt-get install -y --force-yes \ |
10 | | - curl gcc make sudo wget expect gnupg perl-base=5.14.2-21+deb7u3 perl \ |
11 | | - libc-bin=2.13-38+deb7u10 libc6=2.13-38+deb7u10 libc6-dev build-essential \ |
12 | | - cdbs devscripts equivs automake autoconf libtool libaudit-dev selinux-basics \ |
13 | | - libdb5.1=5.1.29-5 libdb5.1-dev libssl1.0.0=1.0.1e-2+deb7u20 procps gawk libsigsegv2 |
14 | | - |
15 | | -RUN apt-get update && apt-get build-dep python3.2 -y |
| 6 | +RUN echo "deb http://deb.debian.org/debian stretch contrib non-free" >> /etc/apt/sources.list && \ |
| 7 | + echo "deb-src http://deb.debian.org/debian stretch main contrib non-free" >> /etc/apt/sources.list && \ |
| 8 | + apt-get update && apt-get install -y apt apt-utils \ |
| 9 | + curl gcc g++ make sudo expect gnupg \ |
| 10 | + perl-base perl wget libc-bin libc6 libc6-dev \ |
| 11 | + build-essential cdbs devscripts equivs automake \ |
| 12 | + autoconf libtool libaudit-dev selinux-basics \ |
| 13 | + libdb5.3 libdb5.3 libssl1.0.2 libssl1.0-dev gawk libsigsegv2 |
| 14 | + |
| 15 | +# Add Debian's source repository and, Install NodeJS 12 |
| 16 | +RUN apt-get update && apt-get build-dep python3.5 -y |
16 | 17 |
|
17 | 18 | RUN curl -OL http://packages.wazuh.com/utils/gcc/gcc-9.4.0.tar.gz && \ |
18 | 19 | tar xzf gcc-9.4.0.tar.gz && cd gcc-9.4.0/ && \ |
|
0 commit comments