Merge pull request 'fix: switch Dockerfile base image to alpine and install dependencies using apk' (#63) from feat/refactor/kiro/1 into feat/refactor/main

Reviewed-on: jiantw83/code-review#63
This commit is contained in:
2026-05-11 10:46:43 +00:00
+5 -5
View File
@@ -1,9 +1,9 @@
FROM node:20-slim
FROM alpine
RUN apt-get update && \
apt-get install -y --no-install-recommends git && \
rm -rf /var/lib/apt/lists/* && \
git --version
RUN apk add --no-cache nodejs npm git \
&& node --version \
&& npm --version \
&& git --version
WORKDIR /action