From c39febaeecc72804463afb5f95ee98b23749b1b6 Mon Sep 17 00:00:00 2001 From: kogeletey Date: Wed, 7 Aug 2024 21:20:48 +0300 Subject: [PATCH] fix: removed distroless, but not working --- .github/workflows/ci-release.yaml | 1 - distroless/Dockerfile | 13 ------------- 2 files changed, 14 deletions(-) delete mode 100644 distroless/Dockerfile diff --git a/.github/workflows/ci-release.yaml b/.github/workflows/ci-release.yaml index 1c79a0e..9b0bf15 100644 --- a/.github/workflows/ci-release.yaml +++ b/.github/workflows/ci-release.yaml @@ -55,7 +55,6 @@ jobs: matrix: distro: - alpine - - distroless - debian on: diff --git a/distroless/Dockerfile b/distroless/Dockerfile deleted file mode 100644 index 140c499..0000000 --- a/distroless/Dockerfile +++ /dev/null @@ -1,13 +0,0 @@ -# -# https://hub.docker.com/r/denoland/deno/ -ARG DENO_VERSION="1.35.3" - -FROM docker.io/denoland/deno:distroless-${DENO_VERSION} - -ARG LUME_VERSION="1.18.3" - -WORKDIR /home/lume/ - -RUN deno run --allow-all https://deno.land/x/lume@v${LUME_VERSION}/cli.ts - -CMD ["lume"]