mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
8 lines
186 B
Bash
Executable file
8 lines
186 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -xeo pipefail
|
|
|
|
cd /tmp
|
|
wget -q https://gitlab.com/axil/phantomjs-debian/raw/master/phantomjs_1.9.8-0jessie_amd64.deb
|
|
dpkg -i phantomjs_1.9.8-0jessie_amd64.deb
|
|
rm /tmp/*
|