From 03b3cd2a1d67dc447c874961f4f36127f8c439b7 Mon Sep 17 00:00:00 2001 From: ElevenNotes Date: Wed, 20 Sep 2023 09:06:22 +0200 Subject: [PATCH] add infos, clear cache --- README.md | 2 +- amd64.dockerfile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7ebd57d..24bc2ea 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Alpine :: InfluxDB -![pulls](https://img.shields.io/docker/pulls/11notes/influxdb?color=2b75d6) ![build](https://img.shields.io/docker/automated/11notes/influxdb?color=2b75d6) ![activity](https://img.shields.io/github/commit-activity/m/11notes/docker-influxdb?color=c91cb8) ![commit-last](https://img.shields.io/github/last-commit/11notes/docker-influxdb?color=c91cb8) +![size](https://img.shields.io/docker/image-size/11notes/influxdb/2.7.1?color=0eb305) ![version](https://img.shields.io/docker/v/11notes/influxdb?color=eb7a09) ![pulls](https://img.shields.io/docker/pulls/11notes/influxdb?color=2b75d6) ![activity](https://img.shields.io/github/commit-activity/m/11notes/docker-influxdb?color=c91cb8) ![commit-last](https://img.shields.io/github/last-commit/11notes/docker-influxdb?color=c91cb8) Run InfluxDB based on Alpine Linux. Small, lightweight, secure and fast 🏔️ diff --git a/amd64.dockerfile b/amd64.dockerfile index 41c6a82..68eacda 100644 --- a/amd64.dockerfile +++ b/amd64.dockerfile @@ -7,12 +7,12 @@ # :: update image RUN set -ex; \ - apk --update --no-cache add \ + apk --no-cache add \ curl \ tzdata \ shadow; \ - apk update; \ - apk upgrade; + apk --no-cache upgrade; \ + apk cache clear; # :: prepare image RUN set -ex; \