mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-10 02:22:57 +01:00
15 lines
444 B
Bash
Executable file
15 lines
444 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -xeo pipefail
|
|
|
|
apt-get update
|
|
apt-get install curl wget build-essential \
|
|
libssl-dev libyaml-dev libreadline6-dev zlib1g-dev \
|
|
libncurses5-dev libffi-dev libgdbm3 libgdbm-dev \
|
|
ca-certificates libyaml-dev checkinstall libxml2-dev \
|
|
libxslt-dev libcurl4-openssl-dev libicu-dev \
|
|
logrotate python-docutils pkg-config cmake nodejs \
|
|
libkrb5-dev postgresql-client mysql-client unzip \
|
|
$PACKAGES
|
|
|
|
rm -rf /var/lib/apt/lists/*
|