chore(docker): pre-install deno within the images (#5644)

This commit is contained in:
Yehonal
2021-05-06 14:54:04 +02:00
committed by GitHub
parent 058f0c9451
commit e564994b37

View File

@@ -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/
#================================================================