mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-15 01:44:12 +03:00
13 lines
214 B
Docker
13 lines
214 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"]
|