diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ebb55e555d9e69fc4bdbb56bed33bb936940910f..9112872216ac13f88fdd534adcc2f1dc05ca2c31 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -5,13 +5,13 @@ stages:
 
 build:
   stage: build
-  image: rust
+  image: rust:latest
   script:
     - cargo build
 
 rustdoc:
   stage: build
-  image: rust
+  image: rust:latest
   script:
     - cargo doc
   artifacts:
@@ -20,13 +20,13 @@ rustdoc:
 
 unit-test:
   stage: test  
-  image: rust
+  image: rust:latest
   script:
     - cargo test --lib
 
 lint-test:  
   stage: test
-  image: rust
+  image: rust:latest
   script:
     - cargo clippy