Skip to content

Commit

Permalink
renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
Casraw committed Mar 30, 2023
1 parent 9327f04 commit 105b636
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion spacebarchat-client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/spacebarchat-client.git ; cd spacebarchat-client ; git checkout dev/bare-rewrite
RUN git clone https://github.com/spacebarchat/client.git ; cd spacebarchat-client ; git checkout dev/bare-rewrite
RUN cd spacebarchat-client ; yarn install --network-timeout 100000 ; yarn build:web

FROM nginx:alpine
Expand Down
2 changes: 1 addition & 1 deletion spacebarchat-server-client-proxy/Dockerfile-frontend
Original file line number Diff line number Diff line change
Expand Up @@ -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/casraw/spacebarchat-client.git ; cd spacebarchat-client ; git checkout master
RUN git clone https://github.com/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

Expand Down
2 changes: 1 addition & 1 deletion spacebarchat-server-client-proxy/Dockerfile-prod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ From node:16-bullseye as builder

WORKDIR devel/
RUN apt-get update ; apt-get upgrade -y ; apt-get install -y python-is-python3 build-essential git
RUN git clone https://github.com/spacebarchat/spacebarchat-server.git
RUN git clone https://github.com/spacebarchat/server.git
RUN cd spacebarchat-server ; npm i ; npm run setup

From node:16-alpine
Expand Down
2 changes: 1 addition & 1 deletion spacebarchat-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ From node:16-bullseye as builder

WORKDIR devel/
RUN apt-get update ; apt-get upgrade -y ; apt-get install -y python-is-python3 build-essential git
RUN git clone https://github.com/spacebarchat/spacebarchat-server.git
RUN git clone https://github.com/spacebarchat/server.git
RUN cd spacebarchat-server ; npm i ; npm run setup

From node:16-alpine
Expand Down
2 changes: 1 addition & 1 deletion spacebarchat-server/Dockerfile-prod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ From node:16-bullseye as builder

WORKDIR devel/
RUN apt-get update ; apt-get upgrade -y ; apt-get install -y python-is-python3 build-essential git
RUN git clone https://github.com/spacebarchat/spacebarchat-server.git
RUN git clone https://github.com/spacebarchat/server.git
RUN cd spacebarchat-server ; npm i ; npm run setup

From node:16-alpine
Expand Down

0 comments on commit 105b636

Please sign in to comment.