From 5a855fb7e490192627f843ba6e1a925414740f07 Mon Sep 17 00:00:00 2001 From: TabascoEye Date: Wed, 15 Sep 2021 10:43:01 +0200 Subject: [PATCH] fix yarn install not working problem for virtually all people trying self-hosting according to #1433, #738 and likely more --- front/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/Dockerfile b/front/Dockerfile index ef724e0f..6c503af8 100644 --- a/front/Dockerfile +++ b/front/Dockerfile @@ -1,6 +1,6 @@ FROM thecodingmachine/workadventure-back-base:latest as builder -WORKDIR /var/www/messages COPY --chown=docker:docker messages . +WORKDIR /var/www/messages RUN yarn install && yarn proto # we are rebuilding on each deploy to cope with the PUSHER_URL environment URL