chore: fix git install target from builder to runner #6

Merged
Hare merged 2 commits from develop into master 2024-09-03 05:24:50 +09:00
Showing only changes of commit f332b7e27e - Show all commits

View File

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