From 21fb994445a506a15ba1ee33bd5183e70ee7499e Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Wed, 3 Aug 2022 22:39:11 +0100 Subject: [PATCH] Only build container as far as production --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 21de841..4c7d8ee 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -48,7 +48,7 @@ container: DOCKER_BUILDKIT: 1 stage: test script: - - docker build -t website . + - docker build -t website --target production . .python_test_template: &python_test_template image: python:3.10