From ad72e72be8146913b3f37c10a01da83d17a18ac9 Mon Sep 17 00:00:00 2001 From: Paul Gabriel Date: Fri, 18 Oct 2024 11:48:16 +0200 Subject: [PATCH] fix: Dockerfile syntax --- .github/workflows/main.yml | 2 ++ Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5007e4e..f80eb4a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,6 +2,8 @@ name: main on: push: + tags: + - "*" branches: - main diff --git a/Dockerfile b/Dockerfile index dbe853f..716b208 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM debian:bookworm-slim -LABEL org.opencontainers.image.source = "https://github.com/dataforgoodfr/d4g-s3-backup" -LABEL org.opencontainers.image.authors = "Data For Good" +LABEL org.opencontainers.image.source="https://github.com/dataforgoodfr/d4g-s3-backup" +LABEL org.opencontainers.image.authors="Data For Good France" RUN apt update && apt install -y s3cmd && apt clean