You've already forked simple-icons
mirror of
https://github.com/simple-icons/simple-icons.git
synced 2025-11-23 21:34:49 +02:00
11 lines
202 B
Docker
11 lines
202 B
Docker
FROM node:24-alpine AS base
|
|
RUN apk add --no-cache git
|
|
WORKDIR /simple-icons
|
|
|
|
FROM base AS final
|
|
WORKDIR /simple-icons
|
|
COPY . .
|
|
RUN npm ci --no-audit --no-fund
|
|
|
|
ENTRYPOINT ["npx", "svgo", "/image.svg"]
|