From aa3dda41b5815974c48a2eb59faa1b82d2c00a26 Mon Sep 17 00:00:00 2001 From: Max Schmidt Date: Fri, 11 Aug 2023 11:05:18 +0200 Subject: [PATCH] no dir listing Signed-off-by: Max Schmidt --- astro/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro/Dockerfile b/astro/Dockerfile index 3e8492e..a9f8467 100644 --- a/astro/Dockerfile +++ b/astro/Dockerfile @@ -20,5 +20,5 @@ FROM denoland/deno:1.36.1 AS prod WORKDIR /site RUN deno install --allow-net --allow-read https://deno.land/std@0.198.0/http/file_server.ts COPY --from=build /build/dist . -CMD ["file_server", "--port", "3000"] +CMD ["file_server", "--port", "3000", "--no-dir-listing"] EXPOSE 3000 \ No newline at end of file