From 6bc090e51bb511107d70cb3d50d2a12f440dcc8f Mon Sep 17 00:00:00 2001 From: Fabian Stamm Date: Mon, 11 Jan 2021 15:38:44 +0100 Subject: [PATCH] Fix dockerfile --- registry/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/Dockerfile b/registry/Dockerfile index 93997da..b63e22f 100644 --- a/registry/Dockerfile +++ b/registry/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app ADD src /app/src ADD public /app/public ADD tsconfig.json /app/ -RUN /usr/bin/deno cache --unstable src/registry.ts +RUN /usr/bin/deno cache --unstable --config /app/tsconfig.json src/registry.ts VOLUME [ "/app/data" ] ENTRYPOINT [ "/usr/bin/deno", "run", "-A", "--unstable", "--config", "/app/tsconfig.json", "/app/src/registry.ts" ]