Some checks failed
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>
13 lines
293 B
Docker
13 lines
293 B
Docker
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" ]
|