Skip to content

Commit acb575a

Browse files
ZRTMRHclaude
andcommitted
Fix game discovery by creating proper games directory structure
- Create /home/node/lean4game/games/local/ directory - Symlink our LinearAlgebraGame to expected location - Resolves 'Did not find the following folder: /home/node/lean4game/games' error - Game should now be discoverable at https://linear-algebra-game.onrender.com 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent ffb04bd commit acb575a

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ RUN echo "Pre-building lean4game server and client..." && \
6161
# Apply port binding fix to relay server
6262
COPY relay-patch.mjs /home/node/lean4game/relay/index.mjs
6363

64+
# Create games directory and link our game for lean4game to find it
65+
RUN mkdir -p /home/node/lean4game/games/local && \
66+
ln -sf /home/node/game /home/node/lean4game/games/local/LinearAlgebraGame
67+
6468
EXPOSE 3000
6569

6670
CMD ["/home/node/start-server.sh"]

0 commit comments

Comments
 (0)