Skip to content

Commit

Permalink
Fix build script permission for docker
Browse files Browse the repository at this point in the history
  • Loading branch information
mwthinker committed Sep 22, 2024
1 parent f46263d commit bd61a9e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ WORKDIR /app/src
RUN git clone https://github.com/mwthinker/MWetris.git MWetris

WORKDIR /app/src/MWetris
RUN ./Docker/build-server
RUN cd ./Docker; ls -ltr;
RUN chmod +x Docker/build-server; Docker/build-server
RUN mkdir -p /app/bin && mv build/GameServer/GameServer /app/bin/.

WORKDIR /app/bin/
Expand Down

0 comments on commit bd61a9e

Please sign in to comment.