From d7fa46e20d7cf06be6d011aec84d29ade398d906 Mon Sep 17 00:00:00 2001
From: Mart van Santen <mart@greenhost.nl>
Date: Wed, 1 Dec 2021 08:01:42 +0100
Subject: [PATCH] Use specific versions of images

---
 .gitlab/ci/hydra/Dockerfile    | 2 +-
 .gitlab/ci/kratos/Dockerfile   | 2 +-
 .gitlab/ci/postgres/Dockerfile | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab/ci/hydra/Dockerfile b/.gitlab/ci/hydra/Dockerfile
index 79d7efb..df1c6af 100644
--- a/.gitlab/ci/hydra/Dockerfile
+++ b/.gitlab/ci/hydra/Dockerfile
@@ -3,7 +3,7 @@
 
 # This Dockerfile is only used for testing CI/CD testing and is not used in
 # production.
-FROM oryd/hydra:latest
+FROM oryd/hydra:v1.10.7-alpine
 
 # Set DSN in Dockerfile, as services variables in CI/CD testing as shared
 # between services and the DSN is different for different services.
diff --git a/.gitlab/ci/kratos/Dockerfile b/.gitlab/ci/kratos/Dockerfile
index b0d345f..61d4f91 100644
--- a/.gitlab/ci/kratos/Dockerfile
+++ b/.gitlab/ci/kratos/Dockerfile
@@ -3,7 +3,7 @@
 
 # This Dockerfile is only used for testing CI/CD testing and is not used in
 # production.
-FROM oryd/kratos:latest
+FROM oryd/kratos:v0.8.0-alpha.3
 
 # Set DSN in Dockerfile, as services variables in CI/CD testing as shared
 # between services and the DSN is different for different services.
diff --git a/.gitlab/ci/postgres/Dockerfile b/.gitlab/ci/postgres/Dockerfile
index 3f567af..7d33ad5 100644
--- a/.gitlab/ci/postgres/Dockerfile
+++ b/.gitlab/ci/postgres/Dockerfile
@@ -4,7 +4,7 @@
 # This Dockerfile is only used for testing CI/CD testing and is not used in
 # production.
 
-FROM postgres:latest
+FROM postgres:bullseye
 
 # Copy our setup SQL to the image to create databases at setup/first run
 COPY setup.sql /docker-entrypoint-initdb.d/setup.sql
-- 
GitLab