From 293f0cf65110b76f8bfefdec37a49f44a255e1df Mon Sep 17 00:00:00 2001 From: vnugent Date: Sat, 19 Jul 2025 11:43:10 -0400 Subject: [PATCH] build(container): add deno cache step to docker container --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1e99f8c..c8ecacc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,5 +11,7 @@ COPY --from=build /app/src/import_map.json . ENV ORIGIN=http://localhost:3000 +RUN deno cache --import-map=import_map.json ./build/index.js + EXPOSE 3000 CMD [ "deno", "run", "--allow-env", "--allow-read", "--allow-net", "--import-map=import_map.json", "./build/index.js" ]