mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-11 02:52:56 +01:00
8 lines
187 B
Bash
8 lines
187 B
Bash
#!/bin/bash
|
|
|
|
set -xeo pipefail
|
|
|
|
cd /tmp
|
|
wget -q http://http.us.debian.org/debian/pool/main/p/phantomjs/phantomjs_2.1.1+dfsg-2_amd64.deb
|
|
dpkg -i phantomjs_2.1.1+dfsg-2_amd64.deb
|
|
rm /tmp/*
|