feat: replace Dockerfiles with Containerfiles for various images
Build and push / check and test (push) Failing after 8s
Build and push / build_and_push (map[name:metabase path:metabase]) (push) Has been skipped
Build and push / build_and_push (map[name:postgres-backup path:postgres-backup]) (push) Has been skipped
Build and push / build_and_push (map[name:pyweb path:pyweb]) (push) Has been skipped
Build and push / build_and_push (map[name:shellcheck path:shellcheck]) (push) Has been skipped
Build and push / build_and_push (map[name:vaultwarden-backup path:vaultwarden-backup]) (push) Has been skipped

Signed-off-by: Uwe Hermann <uh@uleenucks.de>
This commit is contained in:
2026-04-15 17:25:49 +02:00
parent d55f2412f8
commit 732ac5c186
11 changed files with 1 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM debian:bookworm-slim
LABEL maintainer.name="Uwe Hermann"\
maintainer.email="uh@uleenucks.de"
RUN apt-get update && apt-get install -y \
file \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y shellcheck
CMD [ "shellcheck" ]