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
+13
View File
@@ -0,0 +1,13 @@
# Run Lynx in a container
#
FROM alpine:latest
LABEL maintainer.name="Uwe Hermann"\
maintainer.email="uh@uleenucks.de"
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/community/" >> /etc/apk/repositories \
&& echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories \
&& apk -U upgrade --no-cache --no-progress \
&& apk --no-cache --no-progress add lynx \
&& rm -rf /tmp/* /var/cache/apk/*
ENTRYPOINT [ "lynx" ]