mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 18:12:55 +01:00
Fix for bug that forces all Go binaries to be based on Go 1.8 (the default)
This commit is contained in:
parent
ab7d1bf72f
commit
6725e787b0
11 changed files with 40 additions and 25 deletions
|
|
@ -1,10 +1,12 @@
|
|||
#!/bin/bash
|
||||
set -xeuo pipefail
|
||||
IFS=$'\n\t'
|
||||
|
||||
set -xeo pipefail
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
curl -sS -L https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
|
||||
echo "deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main" | tee /etc/apt/sources.list.d/postgresql.list
|
||||
|
||||
apt-get update
|
||||
env DEBIAN_FRONTEND="noninteractive" apt-get install -y postgresql-client
|
||||
apt-get install -y postgresql-client
|
||||
apt-get autoremove -yq
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue