1diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
2index 29efba7958e4afc5919955dbece51e78a9152064..74fd457007ef53c8181b0455db5b2179ef64e8a3 100644
3--- a/.gitlab-ci.yml
4+++ b/.gitlab-ci.yml
5@@ -1,6 +1,12 @@
6-stages: # List of stages for jobs, and their order of execution
7- - production
8-
9+before_script:
10+ - apt-get update -qy
11+ - apt-get install -y ruby-dev
12+ - gem install dpl
13+
14+stages:
15+ - production
16+
17+
18 production:
19 stage: production
20 image: ruby:latest
21@@ -9,4 +15,3 @@ - gem install faraday -v 1.8.0
22 - dpl --provider=heroku --app=$HEROKU_APP --api-key=$HEROKU_API_KEY
23 only:
24 - master
25-