32 lines
689 B
Docker
32 lines
689 B
Docker
# For Build
|
|
FROM node:22-slim as builder
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
COPY package-lock.json ./
|
|
COPY tsconfig.json ./
|
|
RUN npm ci
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
# For Run
|
|
FROM node:22-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./key ./key
|
|
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* && \
|
|
mkdir -p ~/.ssh && \
|
|
ssh-keyscan -t rsa gitea.hareworks.net >> ~/.ssh/known_hosts && \
|
|
git -c core.sshCommand="ssh -i ./key -F /dev/null" clone git@gitea.hareworks.net:Hare/blog-articles.git articles
|
|
|
|
COPY --from=builder /app/build ./build
|
|
COPY --from=builder /app/package.json .
|
|
COPY --from=builder /app/node_modules ./node_modules
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["node", "./build"] |