From 5e488dd05acadd880e3f5ebf0f52edceac0bdf31 Mon Sep 17 00:00:00 2001 From: Erki Date: Sun, 23 Jan 2022 15:31:17 +0200 Subject: [PATCH] Disable caching --- .drone.yml | 4 ++-- jenkins-ubuntu.Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index f928f8b..533f76c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,7 +6,7 @@ steps: - name: build cpp-ubuntu image: docker commands: - - docker build -t erki/cpp-ubuntu:latest - < cpp-ubuntu.Dockerfile + - docker build --no-cache -t erki/cpp-ubuntu:latest - < cpp-ubuntu.Dockerfile volumes: - name: docker_socket path: /var/run/docker.sock @@ -14,7 +14,7 @@ steps: - name: build jenkins-ubuntu image: docker commands: - - docker build -t erki/jenkins-ubuntu:latest - < jenkins-ubuntu.Dockerfile + - docker build --no-cache -t erki/jenkins-ubuntu:latest - < jenkins-ubuntu.Dockerfile volumes: - name: docker_socket path: /var/run/docker.sock diff --git a/jenkins-ubuntu.Dockerfile b/jenkins-ubuntu.Dockerfile index 5711b88..6d9c505 100644 --- a/jenkins-ubuntu.Dockerfile +++ b/jenkins-ubuntu.Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:20.04 +FROM ubuntu:focal ENV DEBIAN_FRONTEND noninteractive