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" ]