From 32d398de4b44d9ab119c7d12efd3dd53fff7e055 Mon Sep 17 00:00:00 2001 From: Max Schmidt Date: Sun, 18 Jun 2023 19:32:54 +0200 Subject: [PATCH] Update skipcache URL in astro Dockerfile --- astro/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro/Dockerfile b/astro/Dockerfile index b076310..2cbf801 100644 --- a/astro/Dockerfile +++ b/astro/Dockerfile @@ -13,7 +13,7 @@ FROM base AS build ENV NODE_ENV=production WORKDIR /build COPY --from=base /base ./ -ADD "https://www.random.org/cgi-bin/randbyte?nbytes=10&format=h" skipcache +ADD "https://random-uuid.deno.dev" skipcache RUN yarn build FROM nginx:stable AS prod