Disable caching
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Erki 2022-01-23 15:31:17 +02:00
parent c050a52821
commit 5e488dd05a
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ steps:
- name: build cpp-ubuntu - name: build cpp-ubuntu
image: docker image: docker
commands: commands:
- docker build -t erki/cpp-ubuntu:latest - < cpp-ubuntu.Dockerfile - docker build --no-cache -t erki/cpp-ubuntu:latest - < cpp-ubuntu.Dockerfile
volumes: volumes:
- name: docker_socket - name: docker_socket
path: /var/run/docker.sock path: /var/run/docker.sock
@ -14,7 +14,7 @@ steps:
- name: build jenkins-ubuntu - name: build jenkins-ubuntu
image: docker image: docker
commands: commands:
- docker build -t erki/jenkins-ubuntu:latest - < jenkins-ubuntu.Dockerfile - docker build --no-cache -t erki/jenkins-ubuntu:latest - < jenkins-ubuntu.Dockerfile
volumes: volumes:
- name: docker_socket - name: docker_socket
path: /var/run/docker.sock path: /var/run/docker.sock

View File

@ -1,4 +1,4 @@
FROM ubuntu:20.04 FROM ubuntu:focal
ENV DEBIAN_FRONTEND noninteractive ENV DEBIAN_FRONTEND noninteractive