From 1cc6d74f818b392e3d9df6cc03c7ba96c2570832 Mon Sep 17 00:00:00 2001 From: lubiana Date: Fri, 13 Dec 2024 13:09:34 +0100 Subject: [PATCH] test --- actions/sleep/Dockerfile | 4 ++-- actions/sleep/entrypoint.sh | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/actions/sleep/Dockerfile b/actions/sleep/Dockerfile index f136650..adc1494 100644 --- a/actions/sleep/Dockerfile +++ b/actions/sleep/Dockerfile @@ -2,10 +2,10 @@ FROM alpine:latest RUN apk add --no-cache \ openssh \ - rsync + rsync \ + git COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] - diff --git a/actions/sleep/entrypoint.sh b/actions/sleep/entrypoint.sh index 6984b7d..3e53b47 100644 --- a/actions/sleep/entrypoint.sh +++ b/actions/sleep/entrypoint.sh @@ -1,8 +1,6 @@ #!/bin/sh -find ./public -type f -regex ".*\.\(css\|html\|js\|json\|svg\|xml\)$" \ - -exec brotli --best -f {} \+ \ - -exec gzip --best -k -f {} \+ +echo 'hello' sleep 3 exit 0