1
0
mirror of https://github.com/simple-icons/simple-icons.git synced 2025-02-14 02:00:11 +02:00
simple-icons/Dockerfile
2024-12-21 22:49:25 +08:00

12 lines
210 B
Docker

FROM node:22-alpine
RUN apk add --no-cache git
WORKDIR /simple-icons
COPY package.json /simple-icons/
RUN npm install --ignore-scripts --no-audit --no-fund
COPY . .
ENTRYPOINT ["npx", "svgo", "/image.svg"]