From e564994b37e0c0c88d020d1e32d3c8077b957ebe Mon Sep 17 00:00:00 2001 From: Yehonal Date: Thu, 6 May 2021 14:54:04 +0200 Subject: [PATCH] chore(docker): pre-install deno within the images (#5644) --- apps/docker/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/docker/Dockerfile b/apps/docker/Dockerfile index 954972fcd..ad8b6873b 100644 --- a/apps/docker/Dockerfile +++ b/apps/docker/Dockerfile @@ -62,6 +62,9 @@ USER $DOCKER_USER # NOTE: this folder is different by the /azerothcore (which is binded instead) COPY --chown=$DOCKER_USER:$DOCKER_USER . /azerothcore +# Download deno and make sure the dashboard works +RUN bash /azerothcore/acore.sh quit + WORKDIR /azerothcore #================================================================ @@ -132,6 +135,9 @@ RUN mkdir -p /azerothcore/env/dist/logs RUN mkdir -p /azerothcore/env/dist/etc RUN mkdir -p /azerothcore/env/dist/bin +# Download deno and make sure the dashboard works +RUN bash /azerothcore/acore.sh quit + WORKDIR /azerothcore/ #================================================================