Skip to content
Snippets Groups Projects
Verified Commit c9fb70bf authored by Sebastian's avatar Sebastian
Browse files

Remove installation scripts

parent c1004696
No related branches found
No related tags found
No related merge requests found
Pipeline #14676 passed
......@@ -5,9 +5,6 @@ ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /opt/tor-reproducer
ADD install*.sh ./
RUN ./install.sh
ADD prepare_tor_macos.sh ./
ADD prepare_docker_in_docker.sh ./
ADD build_tor_macos.py ./
......
#!/usr/bin/env bash
set -e
set -x
apt-get install -y --no-install-recommends \
python3-pip python3-setuptools python3-wheel \
python3-libarchive-c \
libmagic1
# Install latest diffoscope (version in Debian stable is outdated)
pip3 install diffoscope
#!/usr/bin/env bash
set -e
set -x
apt-get install -y --no-install-recommends \
git \
vim `# just for live debugging` \
wget \
gpg \
zip \
software-properties-common \
libyaml-libyaml-perl \
libtemplate-perl \
libdatetime-perl \
libio-handle-util-perl \
libio-all-perl \
libio-captureoutput-perl \
libjson-perl \
libpath-tiny-perl \
libstring-shellquote-perl \
libsort-versions-perl \
libdigest-sha-perl \
libdata-uuid-perl \
libdata-dump-perl \
libfile-copy-recursive-perl \
libfile-slurp-perl \
mercurial \
uidmap \
fastjar
# unzip \
# build-essential \
# make \
# patch \
# pkg-config \
# autopoint \
# libtool \
# automake \
# binutils-multiarch \
# perl \
# po4a
#!/usr/bin/env bash
set -e
set -x
# update package sources
apt-get update
apt-get -y upgrade
# do not install documentation to keep image small
echo "path-exclude=/usr/share/locale/*" >> /etc/dpkg/dpkg.cfg.d/01_nodoc
echo "path-exclude=/usr/share/man/*" >> /etc/dpkg/dpkg.cfg.d/01_nodoc
echo "path-exclude=/usr/share/doc/*" >> /etc/dpkg/dpkg.cfg.d/01_nodoc
# install dependencies
./install-dependencies.sh
./install-dependencies-verification.sh
# clean up for smaller image size
apt-get -y autoremove --purge
apt-get clean
rm -rf /var/lib/apt/lists/*
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment