1
0
mirror of https://github.com/simple-icons/simple-icons.git synced 2025-11-23 21:34:49 +02:00
Files
simple-icons/Dockerfile
simple-icons[bot] 02d63a3646 Update dependencies (#13938)
Co-authored-by: LitoMore <LitoMore@users.noreply.github.com>
2025-11-14 00:11:19 +08:00

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"]