mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-17 10:54:12 +03:00
12 lines
188 B
Docker
12 lines
188 B
Docker
|
FROM alpine:3.12
|
||
|
|
||
|
RUN apk add --update nodejs npm
|
||
|
|
||
|
WORKDIR /simple-icons
|
||
|
COPY package*.json /simple-icons/
|
||
|
RUN npm install
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
ENTRYPOINT ["npm", "run", "svgo", "--", "/image.svg"]
|