diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 380c99119b783f4962248480b86f9a203b8450fe..46f85288868a2cbba17050e64febfe0cb43b85f4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,11 +1,18 @@
-image: gitlab.labranet.jamk.fi:4567/tools-and-services/mkdocs-plantuml-docker
+image: python:3.8
 
 pages:
-  script:
-    - mkdocs build
-  artifacts:
-    paths:
-      - public
-  tags:
-    - general
-
+    script:
+        - apt update && apt install git -y
+        - pip install mkdocs
+        - pip install mkdocs-material
+        - git clone https://github.com/g-provost/lightgallery-markdown.git
+        - cd lightgallery-markdown
+        - python setup.py install
+        - cd ..
+        - mkdocs --version
+        - mkdocs build
+    artifacts:
+        paths:
+            - public
+    tags:
+        - general
\ No newline at end of file