fix: Add git to all Dockerfiles for npm dependencies that require git repositories
This commit is contained in:
@@ -1,6 +1,9 @@
|
|||||||
# Admin Dockerfile - Vue 3 Admin Dashboard
|
# Admin Dockerfile - Vue 3 Admin Dashboard
|
||||||
FROM node:20-alpine
|
FROM node:20-alpine
|
||||||
|
|
||||||
|
# Install git for npm dependencies
|
||||||
|
RUN apk add --no-cache git
|
||||||
|
|
||||||
# Set working directory
|
# Set working directory
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
# Client Dockerfile - Vue 3 Client UI
|
# Client Dockerfile - Vue 3 Client UI
|
||||||
FROM node:20-alpine
|
FROM node:20-alpine
|
||||||
|
|
||||||
|
# Install git for npm dependencies
|
||||||
|
RUN apk add --no-cache git
|
||||||
|
|
||||||
# Set working directory
|
# Set working directory
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
# Server Dockerfile - Colyseus Server
|
# Server Dockerfile - Colyseus Server
|
||||||
FROM node:20-alpine
|
FROM node:20-alpine
|
||||||
|
|
||||||
|
# Install git for npm dependencies
|
||||||
|
RUN apk add --no-cache git
|
||||||
|
|
||||||
# Set working directory
|
# Set working directory
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user