chore: Install git in Docker image for building the app

This commit is contained in:
Keisuke Hirata 2024-09-03 05:18:39 +09:00
parent 49e4646375
commit 96610e2b66

View File

@ -1,6 +1,8 @@
# For Build # For Build
FROM node:22-slim as builder FROM node:22-slim as builder
RUN apt-get update && apt-get install -y git
WORKDIR /app WORKDIR /app
COPY package.json ./ COPY package.json ./