From a4ae400763d13ea5203002fdb88c9cbc27e6e1f9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andrej=20Rama=C5=A1euski?= <andrej@x2.cz>
Date: Thu, 8 Apr 2021 19:51:30 +0200
Subject: [PATCH] Bugfix

---
 .gitlab-ci.yml | 5 ++++-
 Dockerfile     | 2 +-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2a7bde0..596efb5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,12 +2,15 @@ image: docker:19.03.12
 
 variables:
   DOCKER_TLS_CERTDIR: "/certs"
-  IMAGE_VER: 3.4.13-passenger-1
+  IMAGE_VER: 3.4.13-passenger-2
 
 services:
   - docker:19.03.12-dind
 
 before_script:
+  - apk update && apk add git
+  - git submodule sync
+  - git submodule update --init
   - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
 
 build:
diff --git a/Dockerfile b/Dockerfile
index b6ca95e..580d6df 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM redmine:3.4.13
+FROM redmine:3.4.13-passenger
 MAINTAINER Andrej RamaĊĦeuski <andrej.ramaseuski@pirati.cz>
 
 RUN	apt-get update && \
-- 
GitLab