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