From 01531a1498860920fa99515e238b955b65a5869e Mon Sep 17 00:00:00 2001 From: Casraw Date: Thu, 30 Mar 2023 23:10:28 +0200 Subject: [PATCH] renaming --- spacebarchat-client/Dockerfile | 2 +- spacebarchat-server-client-proxy/Dockerfile-frontend | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spacebarchat-client/Dockerfile b/spacebarchat-client/Dockerfile index b7ba48d..b79f12b 100644 --- a/spacebarchat-client/Dockerfile +++ b/spacebarchat-client/Dockerfile @@ -7,7 +7,7 @@ RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - RUN apt update ; apt install -y yarn nodejs -RUN git clone https://github.com/spacebarchat/client.git ; cd spacebarchat-client ; git checkout dev/bare-rewrite +RUN git clone https://github.com/spacebarchat/client.git RUN cd spacebarchat-client ; yarn install --network-timeout 100000 ; yarn build:web FROM nginx:alpine diff --git a/spacebarchat-server-client-proxy/Dockerfile-frontend b/spacebarchat-server-client-proxy/Dockerfile-frontend index a9eba96..4aac051 100644 --- a/spacebarchat-server-client-proxy/Dockerfile-frontend +++ b/spacebarchat-server-client-proxy/Dockerfile-frontend @@ -10,7 +10,7 @@ RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - RUN apt update ; apt install -y yarn nodejs -RUN git clone https://github.com/spacebarchat/client.git ; cd spacebarchat-client ; git checkout master +RUN git clone https://github.com/Casraw/spacebarchat-client.git ; cd spacebarchat-client ; git checkout master COPY script-frontend.sh spacebarchat-client/script-frontend.sh RUN cd spacebarchat-client && chmod +x script-frontend.sh && sed -i -e 's/\r$//' script-frontend.sh && ./script-frontend.sh && yarn install && yarn build:web