fix: Add git to all Dockerfiles for npm dependencies that require git repositories
Some checks failed
build-and-deploy / build (push) Failing after 1m29s
build-and-deploy / deploy (push) Has been skipped
build-and-deploy / filter (push) Successful in 2s

This commit is contained in:
2025-07-05 14:52:00 -06:00
parent 3ed8357e25
commit 3f52296395
3 changed files with 9 additions and 0 deletions

View File

@@ -1,6 +1,9 @@
# Server Dockerfile - Colyseus Server
FROM node:20-alpine
# Install git for npm dependencies
RUN apk add --no-cache git
# Set working directory
WORKDIR /app