diff --git a/Dockerfile b/Dockerfile index 78951d0..747ba86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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