diff --git a/admin/Dockerfile b/admin/Dockerfile index e26cf6e..912ad2d 100644 --- a/admin/Dockerfile +++ b/admin/Dockerfile @@ -1,6 +1,9 @@ # Admin Dockerfile - Vue 3 Admin Dashboard FROM node:20-alpine +# Install git for npm dependencies +RUN apk add --no-cache git + # Set working directory WORKDIR /app diff --git a/client/Dockerfile b/client/Dockerfile index 790d837..5d894dd 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -1,6 +1,9 @@ # Client Dockerfile - Vue 3 Client UI FROM node:20-alpine +# Install git for npm dependencies +RUN apk add --no-cache git + # Set working directory WORKDIR /app diff --git a/server/Dockerfile b/server/Dockerfile index 74b6072..47f823a 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -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